projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add trait resource
[arvados.git]
/
services
/
api
/
app
/
controllers
/
arvados
/
v1
/
users_controller.rb
1
class Arvados::V1::UsersController < ApplicationController
2
def current
3
@object = current_user
4
show
5
end
6
def system
7
@object = system_user
8
show
9
end
10
end