Merge branch 'master' into 16811-public-favs
[arvados.git] / services / api / app / models / database_seeds.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'update_permissions'
6
7 class DatabaseSeeds
8   extend CurrentApiClient
9   def self.install
10     system_user
11     system_group
12     all_users_group
13     anonymous_group
14     anonymous_group_read_permission
15     anonymous_user
16     system_root_token_api_client
17     public_project_group
18     public_project_read_permission
19     empty_collection
20     refresh_permissions
21     refresh_trashed
22   end
23 end