summaryrefslogtreecommitdiffstats
path: root/internal/auth
diff options
context:
space:
mode:
Diffstat (limited to 'internal/auth')
-rw-r--r--internal/auth/interceptor.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/auth/interceptor.go b/internal/auth/interceptor.go
index 67450ce..2633adb 100644
--- a/internal/auth/interceptor.go
+++ b/internal/auth/interceptor.go
@@ -26,8 +26,8 @@ type InterceptorOptions struct {
26} 26}
27 27
28type AuthOperationConfig struct { 28type AuthOperationConfig struct {
29 Enabled bool 29 Enabled bool `yaml:"enabled"`
30 AllowedNpubs []string 30 AllowedNpubs []string `yaml:"allowed_npubs"`
31} 31}
32 32
33func DefaultInterceptorOptions() *InterceptorOptions { 33func DefaultInterceptorOptions() *InterceptorOptions {