9 lines
206 B
Ruby
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
|