-
Notifications
You must be signed in to change notification settings - Fork 887
feat: add a paginated organization members endpoint #16835
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
cea4d3c
e97c9db
34003dc
9edb088
ef40967
6aaddaf
a724f48
4925592
902538c
06ff95c
560305d
76a4cbf
737ac9f
8910df3
0e579a2
73e356c
24332f4
7af0b60
cdc0322
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -503,7 +503,7 @@ func asserts(inputs ...any) []AssertRBAC { | |
// Could be the string type. | ||
actionAsString, ok := inputs[i+1].(string) | ||
if !ok { | ||
panic(fmt.Sprintf("action '%q' not a supported action", actionAsString)) | ||
panic(fmt.Sprintf("action '%T' not a supported action", inputs[i+1])) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nice catch 😂 |
||
} | ||
action = policy.Action(actionAsString) | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just throw a comment