X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/69e4d608045afea775b77d1f41afddf0bdfcf5c6..8ad5eb9a8f15ab52cab68911121a87ca0971b175:/apps/workbench/app/models/authorized_key.rb diff --git a/apps/workbench/app/models/authorized_key.rb b/apps/workbench/app/models/authorized_key.rb index 2d804e1a53..9809eef0e3 100644 --- a/apps/workbench/app/models/authorized_key.rb +++ b/apps/workbench/app/models/authorized_key.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class AuthorizedKey < ArvadosBase def attribute_editable?(attr, ever=nil) if (attr.to_s == 'authorized_user_uuid') and (not ever) @@ -6,4 +10,8 @@ class AuthorizedKey < ArvadosBase super end end + + def self.creatable? + false + end end