This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/controllers/user_status_controller.rb
2022-05-27 13:15:14 +04:00

26 lines
564 B
Ruby

# frozen_string_literal: true
class UserStatusController < ApplicationController
requires_login
def set
ensure_feature_enabled
raise Discourse::InvalidParameters.new(:description) if params[:description].blank?
current_user.set_status!(params[:description])
render json: success_json
end
def clear
ensure_feature_enabled
current_user.clear_status!
render json: success_json
end
private
def ensure_feature_enabled
raise ActionController::RoutingError.new("Not Found") if !SiteSetting.enable_user_status
end
end