]> git.openstreetmap.org Git - rails.git/commit
Add support for OAuth2 using doorkeeper
authorTom Hughes <tom@compton.nu>
Thu, 27 Aug 2020 17:44:50 +0000 (18:44 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 18 May 2021 11:05:32 +0000 (12:05 +0100)
commite222329d043592af299eed12cf6ad16969c1b46f
tree1f8e0225896a11d35e0fa4909655717eed50af26
parentf58f49e196da9a063c8c7e61b158e06a2df0315d
Add support for OAuth2 using doorkeeper
33 files changed:
.rubocop.yml
.rubocop_todo.yml
Gemfile
Gemfile.lock
app/abilities/ability.rb
app/abilities/api_capability.rb
app/controllers/api_controller.rb
app/controllers/application_controller.rb
app/controllers/oauth2_applications_controller.rb [new file with mode: 0644]
app/controllers/oauth2_authorizations_controller.rb [new file with mode: 0644]
app/controllers/oauth2_authorized_applications_controller.rb [new file with mode: 0644]
app/models/access_token.rb
app/models/client_application.rb
app/models/user.rb
app/views/oauth2_applications/_application.html.erb [new file with mode: 0644]
app/views/oauth2_applications/_form.html.erb [new file with mode: 0644]
app/views/oauth2_applications/edit.html.erb [new file with mode: 0644]
app/views/oauth2_applications/index.html.erb [new file with mode: 0644]
app/views/oauth2_applications/new.html.erb [new file with mode: 0644]
app/views/oauth2_applications/not_found.html.erb [new file with mode: 0644]
app/views/oauth2_applications/show.html.erb [new file with mode: 0644]
app/views/oauth2_authorizations/error.html.erb [new file with mode: 0644]
app/views/oauth2_authorizations/new.html.erb [new file with mode: 0644]
app/views/oauth2_authorizations/show.html.erb [new file with mode: 0644]
app/views/oauth2_authorized_applications/_application.html.erb [new file with mode: 0644]
app/views/oauth2_authorized_applications/index.html.erb [new file with mode: 0644]
app/views/users/account.html.erb
config/initializers/doorkeeper.rb [new file with mode: 0644]
config/locales/en.yml
config/routes.rb
db/migrate/20201004105659_create_doorkeeper_tables.rb [new file with mode: 0644]
db/structure.sql
lib/oauth.rb [new file with mode: 0644]