projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
12032: Fix compatibility with PostgreSQL 9.4.
[arvados.git]
/
services
/
api
/
app
/
models
/
api_client.rb
1
# Copyright (C) The Arvados Authors. All rights reserved.
2
#
3
# SPDX-License-Identifier: AGPL-3.0
4
5
class ApiClient < ArvadosModel
6
include HasUuid
7
include KindAndEtag
8
include CommonApiTemplate
9
has_many :api_client_authorizations
10
11
api_accessible :user, extend: :common do |t|
12
t.add :name
13
t.add :url_prefix
14
t.add :is_trusted
15
end
16
end