summaryrefslogtreecommitdiffstats
path: root/internal/auth/auth_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/auth/auth_test.go')
-rw-r--r--internal/auth/auth_test.go16
1 files changed, 4 insertions, 12 deletions
diff --git a/internal/auth/auth_test.go b/internal/auth/auth_test.go
index 7a0da19..d5f3257 100644
--- a/internal/auth/auth_test.go
+++ b/internal/auth/auth_test.go
@@ -312,21 +312,13 @@ func TestIsWriteMethod(t *testing.T) {
312 }{ 312 }{
313 // Write methods 313 // Write methods
314 {"/nostr.v1.NostrRelay/PublishEvent", true}, 314 {"/nostr.v1.NostrRelay/PublishEvent", true},
315 {"/nostr.v1.NostrRelay/DeleteEvent", true}, 315 {"/nostr.v1.NostrRelay/PublishBatch", true},
316 {"/admin.v1.Admin/CreateUser", true},
317 {"/admin.v1.Admin/UpdateSettings", true},
318 {"/data.v1.Data/InsertRecord", true},
319 {"/data.v1.Data/RemoveItem", true},
320 {"/storage.v1.Storage/SetValue", true},
321 {"/storage.v1.Storage/PutObject", true},
322 316
323 // Read methods 317 // Read methods
324 {"/nostr.v1.NostrRelay/QueryEvents", false},
325 {"/nostr.v1.NostrRelay/Subscribe", false}, 318 {"/nostr.v1.NostrRelay/Subscribe", false},
326 {"/nostr.v1.NostrRelay/GetEvent", false}, 319 {"/nostr.v1.NostrRelay/Unsubscribe", false},
327 {"/admin.v1.Admin/ListUsers", false}, 320 {"/nostr.v1.NostrRelay/QueryEvents", false},
328 {"/health.v1.Health/Check", false}, 321 {"/nostr.v1.NostrRelay/CountEvents", false},
329 {"/info.v1.Info/GetRelayInfo", false},
330 322
331 // Edge cases 323 // Edge cases
332 {"", false}, 324 {"", false},