display only few information on public audition page
This commit is contained in:
@@ -12,20 +12,11 @@
|
|||||||
<%= card_header text: @casting_call.title %>
|
<%= card_header text: @casting_call.title %>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6 col-sm-12">
|
<div class="col-12">
|
||||||
<dl>
|
<dl>
|
||||||
<%= description_list_pair_for @casting_call, :title, append: ":" %>
|
<%= description_list_pair_for @casting_call, :title, append: ":" %>
|
||||||
<%= description_list_pair_for @casting_call, :description, append: ":" %>
|
<%= description_list_pair_for @casting_call, :description, append: ":" %>
|
||||||
<%= description_list_pair_for @casting_call, :project_description, append: ":" %>
|
<%= description_list_pair_for @casting_call, :project_description, append: ":" %>
|
||||||
<%= description_list_pair_for @casting_call, :created_at, append: ":" %>
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-6 col-sm-12">
|
|
||||||
<dl>
|
|
||||||
<%= description_list_pair_for @casting_call, :status, append: ":" %>
|
|
||||||
<%= description_list_pair_for @casting_call, :interview_instructions, append: ":" %>
|
|
||||||
<%= description_list_pair_for @casting_call, :interview_requirements, append: ":" %>
|
|
||||||
<%= description_list_pair_for @casting_call, :questions, append: ":" %>
|
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -9,20 +9,6 @@ SET xmloption = content;
|
|||||||
SET client_min_messages = warning;
|
SET client_min_messages = warning;
|
||||||
SET row_security = off;
|
SET row_security = off;
|
||||||
|
|
||||||
--
|
|
||||||
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
|
|
||||||
--
|
|
||||||
|
|
||||||
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
|
|
||||||
--
|
|
||||||
|
|
||||||
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
|
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Name: fuzzystrmatch; Type: EXTENSION; Schema: -; Owner: -
|
-- Name: fuzzystrmatch; Type: EXTENSION; Schema: -; Owner: -
|
||||||
--
|
--
|
||||||
|
|||||||
@@ -74,6 +74,43 @@ feature "User managing casting calls" do
|
|||||||
expect(page).to have_content("The casting call request has been cancelled")
|
expect(page).to have_content("The casting call request has been cancelled")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
scenario "can open casting call details" do
|
||||||
|
cc = create(:casting_call, title: "Dummy title", project: project)
|
||||||
|
|
||||||
|
visit project_casting_calls_path(project)
|
||||||
|
|
||||||
|
click_on manage_button
|
||||||
|
click_on view_button
|
||||||
|
|
||||||
|
expect(page).to have_content cc.title
|
||||||
|
expect(page).to have_content cc.description
|
||||||
|
expect(page).to have_content cc.project_description
|
||||||
|
expect(page).to have_content cc.created_at
|
||||||
|
expect(page).to have_content cc.status
|
||||||
|
expect(page).to have_content cc.interview_instructions
|
||||||
|
expect(page).to have_content cc.interview_requirements
|
||||||
|
expect(page).to have_content cc.questions
|
||||||
|
end
|
||||||
|
|
||||||
|
context "when signed out" do
|
||||||
|
scenario "user opens public accessible casting call URL" do
|
||||||
|
cc = create(:casting_call, title: "Dummy title", project: project)
|
||||||
|
|
||||||
|
sign_out
|
||||||
|
public_url = "/casting_calls/#{cc.token}"
|
||||||
|
visit public_url
|
||||||
|
|
||||||
|
expect(page).to have_content cc.title
|
||||||
|
expect(page).to have_content cc.description
|
||||||
|
expect(page).to have_content cc.project_description
|
||||||
|
expect(page).not_to have_content cc.created_at
|
||||||
|
expect(page).not_to have_content cc.status
|
||||||
|
expect(page).not_to have_content cc.interview_instructions
|
||||||
|
expect(page).not_to have_content cc.interview_requirements
|
||||||
|
expect(page).not_to have_content cc.questions
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def no_casting_calls_label
|
def no_casting_calls_label
|
||||||
@@ -84,6 +121,10 @@ feature "User managing casting calls" do
|
|||||||
t "casting_calls.casting_call.actions.manage"
|
t "casting_calls.casting_call.actions.manage"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def view_button
|
||||||
|
'View'
|
||||||
|
end
|
||||||
|
|
||||||
def add_new_casting_call_label
|
def add_new_casting_call_label
|
||||||
t "casting_calls.index.actions.new"
|
t "casting_calls.index.actions.new"
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user