You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: proxy/service.go
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,13 @@ type Service struct {
103
103
// /package_name.ServiceName/MethodName
104
104
AuthWhitelistPaths []string`long:"authwhitelistpaths" description:"List of regular expressions for paths that don't require authentication'"`
105
105
106
+
// AuthSkipInvoiceCreationPaths is an optional list of regular expressions
107
+
// that are matched against the path of the URL of a request. If the request
108
+
// URL matches any of those regular expressions, the call will not try to
109
+
// create an invoice for the request, but still try to do the l402
110
+
// authentication.
111
+
AuthSkipInvoiceCreationPaths []string`long:"authskipinvoicecreationpaths" description:"List of regular expressions for paths that will skip invoice creation'"`
0 commit comments