debian-mirror-gitlab/app/controllers/admin/broadcast_messages_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

105 lines
2.7 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class Admin::BroadcastMessagesController < Admin::ApplicationController
2018-03-17 18:26:18 +05:30
include BroadcastMessagesHelper
2023-01-13 00:05:48 +05:30
before_action :find_broadcast_message, only: [:edit, :update, :destroy]
before_action :find_broadcast_messages, only: [:index, :create]
before_action :push_features, only: [:index, :edit]
2014-09-02 18:07:02 +05:30
2022-08-13 15:12:31 +05:30
feature_category :onboarding
2022-07-23 23:45:48 +05:30
urgency :low
2021-01-03 14:25:43 +05:30
2014-09-02 18:07:02 +05:30
def index
2023-01-13 00:05:48 +05:30
@broadcast_message = BroadcastMessage.new
end
def edit
2014-09-02 18:07:02 +05:30
end
def create
@broadcast_message = BroadcastMessage.new(broadcast_message_params)
2023-01-13 00:05:48 +05:30
success = @broadcast_message.save
2014-09-02 18:07:02 +05:30
2023-01-13 00:05:48 +05:30
respond_to do |format|
format.json do
if success
render json: @broadcast_message, status: :ok
else
render json: { errors: @broadcast_message.errors.full_messages }, status: :bad_request
end
end
format.html do
if success
redirect_to admin_broadcast_messages_path, notice: _('Broadcast Message was successfully created.')
else
render :index
end
end
2014-09-02 18:07:02 +05:30
end
end
def update
2023-01-13 00:05:48 +05:30
success = @broadcast_message.update(broadcast_message_params)
respond_to do |format|
format.json do
if success
render json: @broadcast_message, status: :ok
else
render json: { errors: @broadcast_message.errors.full_messages }, status: :bad_request
end
end
format.html do
if success
redirect_to admin_broadcast_messages_path, notice: _('Broadcast Message was successfully updated.')
else
render :edit
end
end
end
end
2014-09-02 18:07:02 +05:30
def destroy
@broadcast_message.destroy
2014-09-02 18:07:02 +05:30
respond_to do |format|
2015-10-24 18:46:33 +05:30
format.html { redirect_back_or_default(default: { action: 'index' }) }
2016-06-02 11:05:42 +05:30
format.js { head :ok }
2014-09-02 18:07:02 +05:30
end
end
2016-04-02 18:10:28 +05:30
def preview
2022-06-21 17:19:12 +05:30
@broadcast_message = BroadcastMessage.new(broadcast_message_params)
render partial: 'admin/broadcast_messages/preview'
2016-04-02 18:10:28 +05:30
end
2014-09-02 18:07:02 +05:30
protected
2023-01-13 00:05:48 +05:30
def find_broadcast_message
@broadcast_message = BroadcastMessage.find(params[:id])
2014-09-02 18:07:02 +05:30
end
2023-01-13 00:05:48 +05:30
def find_broadcast_messages
@broadcast_messages = BroadcastMessage.order(ends_at: :desc).page(params[:page]) # rubocop: disable CodeReuse/ActiveRecord
end
2014-09-02 18:07:02 +05:30
def broadcast_message_params
2022-10-11 01:57:18 +05:30
params.require(:broadcast_message)
.permit(%i(
theme
ends_at
message
starts_at
target_path
broadcast_type
dismissable
), target_access_levels: []).reverse_merge!(target_access_levels: [])
2014-09-02 18:07:02 +05:30
end
2023-01-13 00:05:48 +05:30
def push_features
push_frontend_feature_flag(:vue_broadcast_messages, current_user)
push_frontend_feature_flag(:role_targeted_broadcast_messages, current_user)
end
2014-09-02 18:07:02 +05:30
end