projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
tweak serialized attribute search. refs #1447
[arvados.git]
/
lib
/
common_api_template.rb
1
module CommonApiTemplate
2
def self.included(base)
3
base.extend(ClassMethods)
4
base.acts_as_api
5
base.api_accessible :common do |t|
6
t.add :kind
7
t.add :etag
8
t.add :uuid
9
t.add :owner
10
t.add :created_at
11
t.add :modified_by_client
12
t.add :modified_by_user
13
t.add :modified_at
14
t.add :updated_at
15
end
16
end
17
18
module ClassMethods
19
end
20
end