]> git.openstreetmap.org Git - rails.git/commit
Drop support for OAuth 1
authorTom Hughes <tom@compton.nu>
Wed, 24 Jul 2024 18:12:14 +0000 (19:12 +0100)
committerAnton Khorev <tony29@yandex.ru>
Sun, 1 Sep 2024 00:43:02 +0000 (03:43 +0300)
commit17bc0853a05cc392c335cc8637e901fa33dd75bd
tree1aac4255a5e7de902487bf446f3d3a753a05ef03
parentcee9818dfc9ac3f6eae01cdb51df9093ae5d1322
Drop support for OAuth 1
48 files changed:
Gemfile
Gemfile.lock
app/abilities/ability.rb
app/controllers/accounts_controller.rb
app/controllers/api/notes_controller.rb
app/controllers/api/permissions_controller.rb
app/controllers/api_controller.rb
app/controllers/application_controller.rb
app/controllers/oauth_clients_controller.rb [deleted file]
app/controllers/oauth_controller.rb [deleted file]
app/models/access_token.rb [deleted file]
app/models/client_application.rb [deleted file]
app/models/oauth2_token.rb [deleted file]
app/models/oauth2_verifier.rb [deleted file]
app/models/oauth_nonce.rb [deleted file]
app/models/oauth_token.rb [deleted file]
app/models/request_token.rb [deleted file]
app/models/user.rb
app/views/application/_settings_menu.html.erb
app/views/oauth/authorize.html.erb [deleted file]
app/views/oauth/authorize_failure.html.erb [deleted file]
app/views/oauth/authorize_success.html.erb [deleted file]
app/views/oauth_clients/_form.html.erb [deleted file]
app/views/oauth_clients/edit.html.erb [deleted file]
app/views/oauth_clients/index.html.erb [deleted file]
app/views/oauth_clients/new.html.erb [deleted file]
app/views/oauth_clients/not_found.erb [deleted file]
app/views/oauth_clients/show.html.erb [deleted file]
config/initializers/oauth.rb [deleted file]
config/locales/en.yml
config/routes.rb
config/settings.yml
db/migrate/20240724194738_drop_oauth1_tables.rb [new file with mode: 0644]
db/structure.sql
lib/tasks/cleanup.rake
test/controllers/api/permissions_controller_test.rb
test/controllers/api/users_controller_test.rb
test/controllers/oauth_clients_controller_test.rb [deleted file]
test/controllers/oauth_controller_test.rb [deleted file]
test/factories/client_applications.rb [deleted file]
test/integration/client_applications_test.rb [deleted file]
test/integration/oauth_test.rb [deleted file]
test/models/client_application_test.rb [deleted file]
test/models/oauth_nonce_test.rb [deleted file]
test/models/oauth_token_test.rb [deleted file]
test/models/request_token_test.rb [deleted file]
test/models/user_test.rb
test/test_helper.rb