docbrown/app/controllers/api/v1/users_controller.rb
2023-12-04 23:18:36 +00:00

9 lines
206 B
Ruby

module Api
module V1
class UsersController < ApiController
include Api::UsersController
before_action :authenticate_with_api_key!, only: %i[me search suspend unpublish]
end
end
end