diff --git a/.idea/.idea.BeReadyBackend/.idea/dataSources.xml b/.idea/.idea.BeReadyBackend/.idea/dataSources.xml
index d84601c..aa371f5 100644
--- a/.idea/.idea.BeReadyBackend/.idea/dataSources.xml
+++ b/.idea/.idea.BeReadyBackend/.idea/dataSources.xml
@@ -8,5 +8,12 @@
Server=romaric-thibault.fr,1433
$ProjectFileDir$
+
+ sqlserver.jb
+ true
+ com.jetbrains.jdbc.sqlserver.SqlServerDriver
+ Server=romaric-thibault.fr,1433
+ $ProjectFileDir$
+
\ No newline at end of file
diff --git a/.idea/.idea.BeReadyBackend/.idea/db-forest-config.xml b/.idea/.idea.BeReadyBackend/.idea/db-forest-config.xml
new file mode 100644
index 0000000..e7575ad
--- /dev/null
+++ b/.idea/.idea.BeReadyBackend/.idea/db-forest-config.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/BeReadyBackend/Endpoints/Messages/GetMessagesEndpoint.cs b/BeReadyBackend/Endpoints/Messages/GetMessagesEndpoint.cs
index 51b2a08..ec53854 100644
--- a/BeReadyBackend/Endpoints/Messages/GetMessagesEndpoint.cs
+++ b/BeReadyBackend/Endpoints/Messages/GetMessagesEndpoint.cs
@@ -14,7 +14,7 @@ public class GetMessagesEndpoint(MessagesRepository messagesRepository) : Endpoi
{
public override void Configure()
{
- Post("/Messages/Groups/{@GroupId}/", x => new { x.GroupId });
+ Get("/Messages/Groups/{@GroupId}/", x => new { x.GroupId });
}
public override async Task HandleAsync(GetMessagesRequest req, CancellationToken ct)