fix casting submission view page

This commit is contained in:
Bilal
2020-07-23 12:12:45 +02:00
parent b82aaf77ff
commit 62ef25e511
3 changed files with 31 additions and 9 deletions

View File

@@ -9,14 +9,6 @@ class CastingSubmission < ApplicationRecord
scope :completed, -> { where.not(interviewed_at: nil) }
def join_zoom_meeting_url
uri = URI.parse(self.zoom_meeting_url)
zoom_meeting_id = uri.path.gsub("/j/", "")
zoom_meeting_pwd = uri.query.gsub("pwd=", "")
"zoommtg://zoom.us/join?confno=#{zoom_meeting_id}&pwd=#{zoom_meeting_pwd}"
end
def zip_file_name
"#{self.casting_call.title.parameterize}_#{self.performer_name.parameterize}_#{Time.now.strftime('%Y-%m-%d_%H-%M-%S')}"
end