-
-
Notifications
You must be signed in to change notification settings - Fork 269
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
added user's gpg_keys operations for #552 #717
added user's gpg_keys operations for #552 #717
Conversation
idk what to do with |
Thank you for your PR! |
I would call it |
Good, I'll follow this style also for: /users/{username}/following |
@XAMPPRocky |
I would go with |
How does octokit handle this? |
listGpgKeysForAuthenticatedUser: {
parameters: RequestParameters & Endpoints["GET /user/gpg_keys"]["parameters"];
response: Endpoints["GET /user/gpg_keys"]["response"];
};
listGpgKeysForUser: {
parameters: RequestParameters & Endpoints["GET /users/{username}/gpg_keys"]["parameters"];
response: Endpoints["GET /users/{username}/gpg_keys"]["response"];
}; so |
/user/gpg_keys
/user/gpg_keys/{gpg_key_id}
#552