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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55da21331575531d635e55fb6a79076a6522c88cca286b08db2996ab8bcc1cfc
4
- data.tar.gz: 90b93d96928a56c3d7fe0a82475b7168c2d995bd9d2358df102553e2794b7bf1
3
+ metadata.gz: 73a405b2fac690efce6bd5c9c37db9ac2d959cc8f2da7d18bf1c1dbdb7ae8832
4
+ data.tar.gz: 5ead2f3910c1aad07658d7a7ee54fced56c03be44f5da02d1bfcf48b228d9efd
5
5
  SHA512:
6
- metadata.gz: 2cb7761e9c4aabfafd54b191916cce6f0f90ca75577c38f922a41e382bef6143a26e33e28976cbd933a9b7820961138dacb43f090dbbde3a93440f783618024a
7
- data.tar.gz: 8ede73215d0a59bad13f5f25a9807c0a45f300638965c1d49ca77bfd1e24ef0e1ab37b91454beef8ef0efb78f38f66e8d590929f8521cfb0e8c14f64523ed620
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
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  require 'securerandom'
4
4
 
5
- class Tramway::Event::ParticipantForm < ::Tramway::Core::ApplicationForm
5
+ class Admin::Tramway::Event::ParticipantForm < ::Tramway::Core::ApplicationForm
6
6
  properties :participation_state_event, :comment
7
7
  association :event
8
8
 
@@ -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::PersonForm < ::Tramway::Core::ApplicationForm
3
+ class Admin::Tramway::Event::PersonForm < ::Tramway::Core::ApplicationForm
4
4
  properties :first_name, :last_name, :photo, :description
5
5
 
6
6
  def initialize(object)
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Tramway::Event::PlaceForm < Tramway::Core::ApplicationForm
3
+ class Admin::Tramway::Event::PlaceForm < Tramway::Core::ApplicationForm
4
4
  properties :title, :description, :coordinates, :photo, :city
5
5
 
6
6
  def initialize(object)
@@ -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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tramway
4
4
  module Event
5
- VERSION = '1.9.28.1'
5
+ VERSION = '1.9.28.2'
6
6
  end
7
7
  end
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.1
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-07 00:00:00.000000000 Z
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