effective_classifieds 0.4.11 → 0.4.13
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d802fe2eac42d3af8f640f04c62dccbbe373562b72f17953f1f7628cb035516
|
4
|
+
data.tar.gz: de411167ca89c14a53a0c1f5e0da3180e9bbc7ef1bf1e23661cba0c41b08eaa2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 763605c34d15d43a3fbbd6e8709bfcdce16d7e914033c97e1ae2e4c8b51e1b64d287926ea847ea3ed5ce452e96507972b2fe0c6e559183388642c935799abb80
|
7
|
+
data.tar.gz: aa4bffcfe58593301ecfd435b6514f0e6e2662504cfab015a5a1137f48854c1852458991f45ecfd0896f4847f06a7f5230adade329254bfe2c1b55d0d8b9ec71
|
@@ -21,11 +21,16 @@ class EffectiveClassifiedWizardsDatatable < Effective::Datatable
|
|
21
21
|
actions_col(actions: []) do |wizard|
|
22
22
|
if wizard.draft?
|
23
23
|
dropdown_link_to('Continue', effective_classifieds.classified_wizard_build_path(wizard, wizard.next_step), 'data-turbolinks' => false)
|
24
|
-
|
24
|
+
elsif wizard.classified.present?
|
25
|
+
dropdown_link_to('Show', effective_classifieds.classified_path(wizard.classified))
|
25
26
|
dropdown_link_to('Edit', effective_classifieds.edit_classified_path(wizard.classified))
|
27
|
+
dropdown_link_to('Show Wizard', effective_classifieds.classified_wizard_path(wizard), 'data-turbolinks' => false)
|
28
|
+
end
|
29
|
+
|
30
|
+
if EffectiveResources.authorized?(self, :destroy, wizard)
|
31
|
+
dropdown_link_to('Delete', effective_classifieds.classified_wizard_path(wizard), 'data-confirm': "Really delete #{wizard}?", 'data-method': :delete)
|
26
32
|
end
|
27
33
|
|
28
|
-
dropdown_link_to('Delete', effective_classifieds.classified_wizard_path(wizard), 'data-confirm': "Really delete #{wizard}?", 'data-method': :delete)
|
29
34
|
end
|
30
35
|
end
|
31
36
|
|
@@ -127,11 +127,11 @@ module Effective
|
|
127
127
|
validates :phone, presence: true
|
128
128
|
end
|
129
129
|
|
130
|
-
validate(if: -> { start_on.present? && end_on.present? }) do
|
130
|
+
validate(if: -> { start_on.present? && end_on.present? && !importing }) do
|
131
131
|
self.errors.add(:end_on, 'must be after start date') if end_on < start_on
|
132
132
|
end
|
133
133
|
|
134
|
-
validate(if: -> { start_on.present? && end_on.present? && EffectiveClassifieds.max_duration.present? }) do
|
134
|
+
validate(if: -> { start_on.present? && end_on.present? && EffectiveClassifieds.max_duration.present? && !importing }) do
|
135
135
|
if (end_on - start_on) > EffectiveClassifieds.max_duration
|
136
136
|
distance = ApplicationController.helpers.distance_of_time_in_words(end_on + EffectiveClassifieds.max_duration, end_on).gsub('about', '').strip
|
137
137
|
self.errors.add(:end_on, "must be within #{distance} of start date")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_classifieds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|