-
Notifications
You must be signed in to change notification settings - Fork 8
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
Backend resource support for admin interface #425
Conversation
Codecov Report
@@ Coverage Diff @@
## master #425 +/- ##
=========================================
+ Coverage 95.26% 95.3% +0.04%
=========================================
Files 96 92 -4
Lines 4114 4090 -24
Branches 254 257 +3
=========================================
- Hits 3919 3898 -21
+ Misses 143 141 -2
+ Partials 52 51 -1
Continue to review full report at Codecov.
|
@gen.coroutine | ||
@authenticated | ||
def items(self, items_response, **kwargs): | ||
db = self.application.db |
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.
You can maybe add a docstring
@gen.coroutine | ||
@authenticated | ||
def items(self, items_response, **kwargs): | ||
users = self.application.db.list_users() |
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.
Same here
Changes to the server side admin webapi to support switch to Vue based interface.