mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 23:31:13 +01:00
73540ffe6b
* Move ApiController to Api/BaseController * API controllers inherit from Api::BaseController * Add coverage for various error cases in api/base controller
20 lines
363 B
Ruby
20 lines
363 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::Web::SettingsController < Api::BaseController
|
|
respond_to :json
|
|
|
|
before_action :require_user!
|
|
|
|
def update
|
|
setting.data = params[:data]
|
|
setting.save!
|
|
|
|
render_empty
|
|
end
|
|
|
|
private
|
|
|
|
def setting
|
|
@_setting ||= ::Web::Setting.where(user: current_user).first_or_initialize(user: current_user)
|
|
end
|
|
end
|