8000 Fix url redirects (#8407) · til/activeadmin@883fb6a · GitHub
[go: up one dir, main page]

Skip to content

Commit 883fb6a

Browse files
authored
Fix url redirects (activeadmin#8407)
Issues identified with the help of `awesome_bot` gem
1 parent 05e02f4 commit 883fb6a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Thanks to [Tidelift][tidelift] and all our Tidelift subscribers.
7575
Thanks to [Open Collective][opencollective contributors] and all our Open Collective contributors.
7676

7777
[Arbre]: https://github.com/activeadmin/arbre
78-
[Devise]: https://github.com/plataformatec/devise
79-
[Formtastic]: https://github.com/justinfrench/formtastic
78+
[Devise]: https://github.com/heartcombo/devise
79+
[Formtastic]: https://github.com/formtastic/formtastic
8080
[Inherited Resources]: https://github.com/activeadmin/inherited_resources
8181
[Kaminari]: https://github.com/kaminari/kaminari
8282
[Ransack]: https://github.com/activerecord-hackery/ransack

features/support/env.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
Cucumber::Rails::Database.javascript_strategy = :truncation
5959

6060
# Warden helpers to speed up login
61-
# See https://github.com/plataformatec/devise/wiki/How-To:-Test-with-Capybara
61+
# See https://github.com/heartcombo/devise/wiki/How-To:-Test-with-Capybara
6262
include Warden::Test::Helpers
6363

6464
After do

lib/active_admin/pundit_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def retrieve_policy(subject)
4242
end
4343

4444
def format_action(action, subject)
45-
# https://github.com/varvet/pundit/blob/master/lib/generators/pundit/install/templates/application_policy.rb
45+
# https://github.com/varvet/pundit/blob/main/lib/generators/pundit/install/templates/application_policy.rb
4646
case action
4747
when Auth::READ then subject.is_a?(Class) ? :index? : :show?
4848
when Auth::DESTROY then subject.is_a?(Class) ? :destroy_all? : :destroy?

0 commit comments

Comments
 (0)
0