Sha256: ed0dc11f5a28910b5ba2e52c2fe80bfcdfc556d3af8813e396c70ae008bf7f53
Contents?: true
Size: 537 Bytes
Versions: 62
Compression:
Stored size: 537 Bytes
Contents
module Workarea module Admin class EmailSignupsController < Admin::ApplicationController def index @email_signups = Email::Signup .all .order_by(created_at: :desc) .page(params[:page]) end def destroy signup = Email::Signup.find(params[:id]) signup.destroy flash[:success] = t('workarea.admin.email_signups.flash_messages.destroyed') redirect_to email_signups_path end end end end
Version data entries
62 entries across 62 versions & 1 rubygems