-
Notifications
You must be signed in to change notification settings - Fork 24
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
DOCS-2544: Add backlinks to docs #235
Conversation
@@ -16,28 +18,41 @@ abstract class Camera extends Resource { | |||
/// ``` | |||
/// var nextImage = await myCamera.image(); | |||
/// ``` | |||
/// | |||
/// For more information, see [Camera component](https://docs.viam.com/components/camera/). | |||
|
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.
extraneous new line
Future<String> getUserIdByEmail(String email) async { | ||
final request = GetUserIDByEmailRequest()..email = email; | ||
final GetUserIDByEmailResponse response = await _client.getUserIDByEmail(request); | ||
return response.userId; | ||
} | ||
|
||
/// Create a new [Organization] | ||
Future<Organization> createOrganization(String name) async { |
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.
Looks like this was removed by accident?
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.
yep - sorry
Future<Organization> getOrganization(String organizationId) async { | ||
final getOrganizationRequest = GetOrganizationRequest()..organizationId = organizationId; | ||
final GetOrganizationResponse response = await _client.getOrganization(getOrganizationRequest); | ||
return response.organization; | ||
} | ||
|
||
/// Checks for namespace availablity throughout all [Organization]s. | ||
Future<bool> getOrganizationNamespaceAvailability(String publicNamespace) async { |
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.
And this was also removed by accident?
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.
yep
9625eb7
to
9c0c5bf
Compare
@njooma Thanks for the review. I've made the changes and merged in updates. |
No description provided.