Skip to content

Commit 647e44c

Browse files
authored
Merge branch 'main' into ojtjo3-codex/update-favicon-and-title-on-page-load
2 parents d2dbf64 + 8b46c5e commit 647e44c

File tree

15 files changed

+38
-20
lines changed

15 files changed

+38
-20
lines changed

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ GEM
407407
rdoc (>= 4.0.0)
408408
reline (>= 0.4.2)
409409
jmespath (1.6.2)
410-
json (2.13.0)
410+
json (2.13.2)
411411
json-schema (5.1.1)
412412
addressable (~> 2.8)
413413
bigdecimal (~> 3.1)
@@ -493,7 +493,7 @@ GEM
493493
optimist (3.2.1)
494494
orm_adapter (0.5.0)
495495
parallel (1.27.0)
496-
parser (3.3.8.0)
496+
parser (3.3.9.0)
497497
ast (~> 2.4.1)
498498
racc
499499
pg (1.6.1-aarch64-linux)
@@ -604,7 +604,7 @@ GEM
604604
reform-rails (0.2.6)
605605
activemodel (>= 5.0)
606606
reform (>= 2.3.1, < 3.0.0)
607-
regexp_parser (2.10.0)
607+
regexp_parser (2.11.0)
608608
reline (0.6.2)
609609
io-console (~> 0.5)
610610
representable (3.2.0)
@@ -658,18 +658,18 @@ GEM
658658
rswag-ui (2.16.0)
659659
actionpack (>= 5.2, < 8.1)
660660
railties (>= 5.2, < 8.1)
661-
rubocop (1.78.0)
661+
rubocop (1.79.1)
662662
json (~> 2.3)
663663
language_server-protocol (~> 3.17.0.2)
664664
lint_roller (~> 1.1.0)
665665
parallel (~> 1.10)
666666
parser (>= 3.3.0.2)
667667
rainbow (>= 2.2.2, < 4.0)
668668
regexp_parser (>= 2.9.3, < 3.0)
669-
rubocop-ast (>= 1.45.1, < 2.0)
669+
rubocop-ast (>= 1.46.0, < 2.0)
670670
ruby-progressbar (~> 1.7)
671671
unicode-display_width (>= 2.4.0, < 4.0)
672-
rubocop-ast (1.45.1)
672+
rubocop-ast (1.46.0)
673673
parser (>= 3.3.7.2)
674674
prism (~> 1.4)
675675
rubocop-capybara (2.22.1)

app/controllers/better_together/static_page_template_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class StaticPageTemplateController < AbstractController::Base
88
include AbstractController::Helpers
99
include AbstractController::Translation
1010
include AbstractController::AssetPaths
11+
1112
# include ActionController::UrlWriter
1213

1314
# Uncomment if you want to use helpers

app/controllers/better_together/users/confirmations_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class ConfirmationsController < ::Devise::ConfirmationsController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

app/controllers/better_together/users/omniauth_callbacks_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class OmniauthCallbacksController < ::Devise::OmniauthCallbacksController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

app/controllers/better_together/users/passwords_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class PasswordsController < ::Devise::PasswordsController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

app/controllers/better_together/users/registrations_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module Users
55
# Override default Devise registrations controller
66
class RegistrationsController < ::Devise::RegistrationsController
77
include DeviseLocales
8+
89
skip_before_action :check_platform_privacy
910

1011
def new

app/controllers/better_together/users/sessions_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class SessionsController < ::Devise::SessionsController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89

910
def respond_to_on_destroy

app/controllers/better_together/users/unlocks_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module BetterTogether
44
module Users
55
class UnlocksController < ::Devise::UnlocksController # rubocop:todo Style/Documentation
66
include DeviseLocales
7+
78
skip_before_action :check_platform_privacy
89
end
910
end

app/future_controllers/better_together/api_controller.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module BetterTogether
77
class ApiController < ::JSONAPI::ResourceController
88
include Pundit::Authorization
99
include Pundit::ResourceController
10+
1011
protect_from_forgery with: :exception, unless: -> { request.format.json? }
1112
end
1213
end

app/helpers/better_together/application_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module BetterTogether
66
# platform configurations, and navigation items.
77
module ApplicationHelper # rubocop:todo Metrics/ModuleLength
88
include MetricsHelper
9+
910
# Returns the base URL configured for BetterTogether.
1011
def base_url
1112
::BetterTogether.base_url

0 commit comments

Comments
 (0)