11 lines
190 B
Ruby
11 lines
190 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
module Users
|
|
class SessionsController < Devise::SessionsController
|
|
clear_respond_to
|
|
respond_to :json
|
|
end
|
|
end
|