From afef0247b72e3c5cf088b1886b688daa286d7e04 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Sun, 27 Oct 2024 17:56:30 +0100 Subject: [PATCH] Fixed a typo in the student club documentation --- server/api/tumdev/campus_backend.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/api/tumdev/campus_backend.proto b/server/api/tumdev/campus_backend.proto index bd66d0dc..2304ff41 100644 --- a/server/api/tumdev/campus_backend.proto +++ b/server/api/tumdev/campus_backend.proto @@ -131,9 +131,9 @@ service Campus { option (google.api.http) = {delete: "/device/{device_id}"}; } - // Delete a device from push notifications + // List all avaliable student clubs rpc ListStudentClub(ListStudentClubRequest) returns (ListStudentClubReply) { - option (google.api.http) = {delete: "/student_clubs"}; + option (google.api.http) = {get: "/student_clubs"}; } }