-
Notifications
You must be signed in to change notification settings - Fork 2k
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
A bit of clean up in graph #1081
Conversation
Creation doesnt work yet. Just a bit of clean up before the C# conversion. |
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.
Approved with a minor change.
@@ -31,11 +31,14 @@ public void canCRUDUser() throws Exception { | |||
//LIST | |||
List<User> userList = graphRbacManager.users().list(); | |||
Assert.assertNotNull(userList); | |||
User user = graphRbacManager.users().define("jeffrolfnlu@hotmail.com") | |||
User user = graphRbacManager.users().define("azuresdk@outlook.com") |
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.
Can we delete this user after test is done? not sure if we can do so. But this test is not doing much once it run for first time as this user will always be there for ever.
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.
This test is not functional. For now it's just a placeholder.
} | ||
|
||
@Override | ||
public Observable<ServicePrincipal> createResourceAsync() { | ||
return null; | ||
throw new UnsupportedOperationException("Will be implemented in a next release"); |
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.
instead of promising when it will be implemented, which we probably shouldn't do, we could just say "Not yet implemented".
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.
It will be done in a few days. So I'm lying anyways.
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.
ah, ok. Well, but if a bus runs you over in the meantime (which I hope it doesn't!) there is a chance we'll ship it as is, so...
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.
Fix it, not sure why the new Github doesn't hide this
A bit of clean up in graph
A bit of clean up in graph
No description provided.