add Repositories resource, fix authorized_user attr name, some wb fixes
authorTom Clegg <tom@clinicalfuture.com>
Tue, 11 Jun 2013 17:00:06 +0000 (13:00 -0400)
committerTom Clegg <tom@clinicalfuture.com>
Tue, 11 Jun 2013 17:00:06 +0000 (13:00 -0400)
commit63f9b5374e01394486a07dba4f9a43cfd76707e3
treed6b41219bb159b5419ffd53bbffd904a24d0db08
parent59ca4f8091ddd500eb56c885c795142727b89049
add Repositories resource, fix authorized_user attr name, some wb fixes
43 files changed:
apps/workbench/app/assets/javascripts/repositories.js.coffee [new file with mode: 0644]
apps/workbench/app/assets/stylesheets/application.css
apps/workbench/app/assets/stylesheets/repositories.css.scss [new file with mode: 0644]
apps/workbench/app/controllers/application_controller.rb
apps/workbench/app/controllers/authorized_keys_controller.rb
apps/workbench/app/controllers/repositories_controller.rb [new file with mode: 0644]
apps/workbench/app/controllers/sessions_controller.rb
apps/workbench/app/helpers/repositories_helper.rb [new file with mode: 0644]
apps/workbench/app/models/arvados_base.rb
apps/workbench/app/models/arvados_resource_list.rb
apps/workbench/app/models/authorized_key.rb
apps/workbench/app/models/repository.rb [new file with mode: 0644]
apps/workbench/app/models/user.rb
apps/workbench/app/views/application/index.html.erb [new file with mode: 0644]
apps/workbench/app/views/authorized_keys/_form.html.erb [deleted file]
apps/workbench/app/views/authorized_keys/index.html.erb [deleted file]
apps/workbench/app/views/authorized_keys/new.html.erb [deleted file]
apps/workbench/app/views/authorized_keys/show.html.erb [deleted file]
apps/workbench/app/views/layouts/application.html.erb
apps/workbench/app/views/virtual_machines/index.html.erb [deleted file]
apps/workbench/config/routes.rb
apps/workbench/test/fixtures/repositories.yml [new file with mode: 0644]
apps/workbench/test/functional/repositories_controller_test.rb [new file with mode: 0644]
apps/workbench/test/unit/helpers/repositories_helper_test.rb [new file with mode: 0644]
apps/workbench/test/unit/repository_test.rb [new file with mode: 0644]
services/api/app/assets/javascripts/repositories.js.coffee [new file with mode: 0644]
services/api/app/assets/stylesheets/repositories.css.scss [new file with mode: 0644]
services/api/app/controllers/application_controller.rb
services/api/app/controllers/arvados/v1/repositories_controller.rb [new file with mode: 0644]
services/api/app/helpers/repositories_helper.rb [new file with mode: 0644]
services/api/app/models/arvados_model.rb
services/api/app/models/authorized_key.rb
services/api/app/models/repository.rb [new file with mode: 0644]
services/api/app/models/user.rb
services/api/config/routes.rb
services/api/db/migrate/20130610202538_create_repositories.rb [new file with mode: 0644]
services/api/db/migrate/20130611163736_rename_authorized_key_authorized_user_to_authorized_user_uuid.rb [new file with mode: 0644]
services/api/db/schema.rb
services/api/test/fixtures/authorized_keys.yml
services/api/test/fixtures/repositories.yml [new file with mode: 0644]
services/api/test/functional/repositories_controller_test.rb [new file with mode: 0644]
services/api/test/unit/helpers/repositories_helper_test.rb [new file with mode: 0644]
services/api/test/unit/repository_test.rb [new file with mode: 0644]