tramway-event 1.9.28.1 → 1.9.28.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/forms/{tramway → admin/tramway}/event/event_form.rb +1 -1
- data/app/forms/{tramway → admin/tramway}/event/partaking_form.rb +1 -1
- data/app/forms/{tramway → admin/tramway}/event/participant_form.rb +1 -1
- data/app/forms/{tramway → admin/tramway}/event/participant_form_field_form.rb +1 -1
- data/app/forms/{tramway → admin/tramway}/event/person_form.rb +1 -1
- data/app/forms/{tramway → admin/tramway}/event/place_form.rb +1 -1
- data/app/forms/{tramway → admin/tramway}/event/section_form.rb +1 -1
- data/lib/tramway/event/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73a405b2fac690efce6bd5c9c37db9ac2d959cc8f2da7d18bf1c1dbdb7ae8832
|
4
|
+
data.tar.gz: 5ead2f3910c1aad07658d7a7ee54fced56c03be44f5da02d1bfcf48b228d9efd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa439dd85f1188389a9cb9416a82770d97f51cba9eca16c3fdb4142adea5c48680dd9d95034de7043a5146e900eac4441fe82c937c2719758e321ba264a0f6f7
|
7
|
+
data.tar.gz: c2ce2baf15af424151620426861d293be00d61cdd36912e583e7d49f2521e8437b05601faa931567523d9922cb4c557028babe2f16e140e3dddff002a4765994
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
class Tramway::Event::EventForm < ::Tramway::Core::ApplicationForm
|
3
|
+
class Admin::Tramway::Event::EventForm < ::Tramway::Core::ApplicationForm
|
4
4
|
properties :title, :description, :begin_date, :end_date, :photo, :status,
|
5
5
|
:request_collecting_begin_date, :request_collecting_end_date, :short_description
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
class Tramway::Event::PartakingForm < ::Tramway::Core::ApplicationForm
|
3
|
+
class Admin::Tramway::Event::PartakingForm < ::Tramway::Core::ApplicationForm
|
4
4
|
properties :part_id, :part_type, :person_id, :position
|
5
5
|
associations :person, :part
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
class Tramway::Event::ParticipantFormFieldForm < ::Tramway::Core::ExtendedApplicationForm
|
3
|
+
class Admin::Tramway::Event::ParticipantFormFieldForm < ::Tramway::Core::ExtendedApplicationForm
|
4
4
|
properties :title, :description, :field_type, :options, :position, :list_field
|
5
5
|
association :event
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
class Tramway::Event::SectionForm < ::Tramway::Core::ApplicationForm
|
3
|
+
class Admin::Tramway::Event::SectionForm < ::Tramway::Core::ApplicationForm
|
4
4
|
properties :event, :title, :description, :photo, :icon, :position
|
5
5
|
association :event
|
6
6
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tramway-event
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.9.28.
|
4
|
+
version: 1.9.28.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pavel Kalashnikov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-02-
|
11
|
+
date: 2020-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Rails engine for events
|
14
14
|
email:
|
@@ -40,14 +40,14 @@ files:
|
|
40
40
|
- app/decorators/tramway/event/place_decorator.rb
|
41
41
|
- app/decorators/tramway/event/section_decorator.rb
|
42
42
|
- app/decorators/tramway/event/section_feature_decorator.rb
|
43
|
-
- app/forms/tramway/event/event_form.rb
|
44
|
-
- app/forms/tramway/event/partaking_form.rb
|
43
|
+
- app/forms/admin/tramway/event/event_form.rb
|
44
|
+
- app/forms/admin/tramway/event/partaking_form.rb
|
45
|
+
- app/forms/admin/tramway/event/participant_form.rb
|
46
|
+
- app/forms/admin/tramway/event/participant_form_field_form.rb
|
47
|
+
- app/forms/admin/tramway/event/person_form.rb
|
48
|
+
- app/forms/admin/tramway/event/place_form.rb
|
49
|
+
- app/forms/admin/tramway/event/section_form.rb
|
45
50
|
- app/forms/tramway/event/participant_extended_form_creator.rb
|
46
|
-
- app/forms/tramway/event/participant_form.rb
|
47
|
-
- app/forms/tramway/event/participant_form_field_form.rb
|
48
|
-
- app/forms/tramway/event/person_form.rb
|
49
|
-
- app/forms/tramway/event/place_form.rb
|
50
|
-
- app/forms/tramway/event/section_form.rb
|
51
51
|
- app/helpers/tramway/event/application_helper.rb
|
52
52
|
- app/jobs/tramway/event/application_job.rb
|
53
53
|
- app/mailers/tramway/event/application_mailer.rb
|