mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
748 B
27 lines
748 B
# frozen_string_literal: true
|
|
|
|
class SubmissionEventsController < ApplicationController
|
|
SUBMISSION_EVENT_ICONS = {
|
|
'view_form' => 'eye',
|
|
'start_form' => 'player_play',
|
|
'complete_form' => 'check',
|
|
'send_email' => 'mail_forward',
|
|
'click_email' => 'hand_click',
|
|
'api_complete_form' => 'check',
|
|
'send_reminder_email' => 'mail_forward',
|
|
'send_2fa_sms' => '2fa',
|
|
'send_sms' => 'send',
|
|
'phone_verified' => 'phone_check',
|
|
'email_verified' => 'email_check',
|
|
'click_sms' => 'hand_click',
|
|
'decline_form' => 'x',
|
|
'start_verification' => 'player_play',
|
|
'complete_verification' => 'check',
|
|
'invite_party' => 'user_plus'
|
|
}.freeze
|
|
|
|
load_and_authorize_resource :submission
|
|
|
|
def index; end
|
|
end
|