-
Notifications
You must be signed in to change notification settings - Fork 10
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
Document Seam workspace scope #483
Conversation
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.
@andrii-balitskyi This looks so cool! Thanks!
src/layouts/api-endpoint.hbs
Outdated
@@ -34,6 +34,9 @@ | |||
|
|||
{{#each authMethods}} | |||
- {{this}} | |||
{{#if (eq this 'Personal access token')}} | |||
- {{#if (eq ../workspaceScope 'required')}}Must also include the `seam-workspace` header in the request{{/if}}{{#if (eq ../workspaceScope 'optional')}}Can also include the `seam-workspace` header in the request{{/if}}{{#if (eq ../workspaceScope 'none')}}Must omit the `seam-workspace` header from the request{{/if}} |
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.
- {{#if (eq ../workspaceScope 'required')}}Must also include the `seam-workspace` header in the request{{/if}}{{#if (eq ../workspaceScope 'optional')}}Can also include the `seam-workspace` header in the request{{/if}}{{#if (eq ../workspaceScope 'none')}}Must omit the `seam-workspace` header from the request{{/if}} | |
- {{#if (eq ../workspaceScope 'required')}}Must also include the `seam-workspace` header in the request.{{/if}}{{#if (eq ../workspaceScope 'optional')}}Can also include the `seam-workspace` header in the request.{{/if}}{{#if (eq ../workspaceScope 'none')}}Must omit the `seam-workspace` header from the request.{{/if}} |
Please add a period at the end of the statements for consistency with descriptions. Also, do you think it would look OK if we removed the nested bulleted list?
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.
Sure! Here's the commit f495396
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.
The statement wasn't rendering on a new line with the nested bullet point so I added the line break tag and it seems to work now. Let me know what you think.
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.
@andrii-balitskyi Looks excellent to me! Many thanks!
Closes #461