feat: CSAT response collection public page (#2685)

This commit is contained in:
Muhsin Keloth
2021-08-03 18:22:50 +05:30
committed by GitHub
parent 9b01b82cc7
commit 92c14fa87d
18 changed files with 371 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
class Survey::ResponsesController < ActionController::Base
before_action :set_global_config
def show; end
private
def set_global_config
@global_config = GlobalConfig.get('LOGO_THUMBNAIL', 'BRAND_NAME', 'WIDGET_BRAND_URL')
end
end