1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-04 04:55:20 +02:00

Merge pull request #248 from robzolkos/fix-rubocop-issues

Lint files to rubocop omakase standards
This commit is contained in:
Josh Pigford 2024-02-02 10:19:55 -06:00 committed by GitHub
commit 7830c553a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 13 additions and 17 deletions

View file

@ -37,4 +37,3 @@ class PasswordResetsController < ApplicationController
params.require(:user).permit(:password, :password_confirmation) params.require(:user).permit(:password, :password_confirmation)
end end
end end

View file

@ -18,4 +18,3 @@ class PasswordsController < ApplicationController
params.require(:user).permit(:password, :password_confirmation, :password_challenge).with_defaults(password_challenge: "") params.require(:user).permit(:password, :password_confirmation, :password_challenge).with_defaults(password_challenge: "")
end end
end end

View file

@ -27,4 +27,3 @@ class RegistrationsController < ApplicationController
params.require(:user).permit(:name, :email, :password, :password_confirmation) params.require(:user).permit(:name, :email, :password, :password_confirmation)
end end
end end

View file

@ -19,4 +19,3 @@ class SessionsController < ApplicationController
redirect_to root_path, notice: "You have signed out successfully." redirect_to root_path, notice: "You have signed out successfully."
end end
end end