Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

テスト環境におけるイベント日時の秒数入力フォームを削除 #7441

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions db/fixtures/events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,43 +16,43 @@ event2:
description: "募集期間中のイベントです。参加申込ができます。補欠者はまだいません。"
location: "FJORDオフィス"
capacity: 40
start_at: <%= Time.current.next_year - 1.day %>
end_at: <%= Time.current.next_year %>
open_start_at: <%= Time.current %>
open_end_at: <%= Time.current.next_year %>
start_at: <%= Time.current.change(sec:0).next_year - 1.day %>
end_at: <%= Time.current.change(sec:0).next_year %>
open_start_at: <%= Time.current.change(sec:0) %>
open_end_at: <%= Time.current.change(sec:0).next_year %>
user: komagata

event3:
title: "募集期間中のイベント(補欠者あり)"
description: "募集期間中のイベントです。参加申込ができます。補欠者がいます。"
location: "FJORDオフィス"
capacity: 1
start_at: <%= Time.current.next_year - 1.day %>
end_at: <%= Time.current.next_year %>
open_start_at: <%= Time.current %>
open_end_at: <%= Time.current.next_year %>
start_at: <%= Time.current.change(sec:0).next_year - 1.day %>
end_at: <%= Time.current.change(sec:0).next_year %>
open_start_at: <%= Time.current.change(sec:0) %>
open_end_at: <%= Time.current.change(sec:0).next_year %>
user: komagata

event4:
title: "募集期間前のイベント"
description: "募集期間前のイベントです。"
location: "FJORDオフィス"
capacity: 10
start_at: <%= Time.current.next_year - 1.hour %>
end_at: <%= Time.current.next_year %>
open_start_at: <%= Time.current.next_year - 1.day %>
open_end_at: <%= Time.current.next_year %>
start_at: <%= Time.current.change(sec:0).next_year - 1.hour %>
end_at: <%= Time.current.change(sec:0).next_year %>
open_start_at: <%= Time.current.change(sec:0).next_year - 1.day %>
open_end_at: <%= Time.current.change(sec:0).next_year %>
user: komagata

event5:
title: "募集期間後のイベント"
description: "募集が終了したイベントです。"
location: "FJORDオフィス"
capacity: 10
start_at: <%= Time.current.next_year - 1.hour %>
end_at: <%= Time.current.next_year %>
open_start_at: <%= Time.current.yesterday %>
open_end_at: <%= Time.current.yesterday + 1.hour %>
start_at: <%= Time.current.change(sec:0).next_year - 1.hour %>
end_at: <%= Time.current.change(sec:0).next_year %>
open_start_at: <%= Time.current.change(sec:0).yesterday %>
open_end_at: <%= Time.current.change(sec:0).yesterday + 1.hour %>
user: komagata

event6:
Expand Down