diff --git a/app/models/auth/model/authorized_token.rb b/app/models/auth/model/authorized_token.rb index 15900a90..4b62433b 100644 --- a/app/models/auth/model/authorized_token.rb +++ b/app/models/auth/model/authorized_token.rb @@ -98,7 +98,12 @@ def generate_jwt_token uid: uid } - crypt = ActiveSupport::MessageEncryptor.new(auth_app.appid, cipher: 'aes-256-gcm', serializer: :json, urlsafe: true) + crypt = ActiveSupport::MessageEncryptor.new( + auth_app.appid, + cipher: 'aes-256-gcm', + serializer: :json, + urlsafe: true + ) crypt.encrypt_and_sign(payload) end