effective_classifieds 0.2.0 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/effective/classified_wizards_controller.rb +0 -21
- data/app/controllers/effective/classifieds_controller.rb +1 -1
- data/app/datatables/admin/effective_classified_wizards_datatable.rb +1 -1
- data/app/mailers/effective/classifieds_mailer.rb +1 -1
- data/config/effective_classifieds.rb +11 -15
- data/db/migrate/01_create_effective_classifieds.rb.erb +4 -4
- data/lib/effective_classifieds/version.rb +1 -1
- metadata +2 -3
- data/app/views/layouts/effective_classifieds_mailer_layout.html.haml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '02458792301648b01098c825a54d2fa92267599f520340ac347f6ab7417cbcfb'
|
4
|
+
data.tar.gz: 92dbdd7f35880a95007e71827d3245ba97855ce4b1ee96cb5cb444a7710d8d5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53f7ffcdfbf0b0213249c8d5ac4dc8ce3a519702776706e5e4bfeb09cb50e73d0ecba3c55057db19ce392fe44a51864adb02079ab8d4e295ba03e2d0e69fa08f
|
7
|
+
data.tar.gz: f70627b5a9963d3e5cd0832448441c2e6288c8c0fc591f414b77bc5c0790cd425d1cfc38d2436d184ac909800289f7a17829e5f24cbf550bc2ba95a61f58b673
|
@@ -6,26 +6,5 @@ module Effective
|
|
6
6
|
|
7
7
|
resource_scope -> { EffectiveClassifieds.ClassifiedWizard.deep.where(owner: current_user) }
|
8
8
|
|
9
|
-
# Allow only 1 in-progress application at a time
|
10
|
-
before_action(only: [:new, :show], unless: -> { resource&.done? }) do
|
11
|
-
existing = resource_scope.in_progress.where.not(id: resource).first
|
12
|
-
|
13
|
-
if existing.present?
|
14
|
-
flash[:success] = "You have been redirected to your in-progress classified ad submission"
|
15
|
-
redirect_to effective_classifieds.classified_wizard_build_path(existing, existing.next_step)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
after_save do
|
20
|
-
flash.now[:success] = ''
|
21
|
-
end
|
22
|
-
|
23
|
-
private
|
24
|
-
|
25
|
-
def permitted_params
|
26
|
-
model = (params.key?(:effective_classified_wizard) ? :effective_classified_wizard : :classified_wizard)
|
27
|
-
params.require(model).permit!.except(:status, :status_steps, :wizard_steps, :submitted_at)
|
28
|
-
end
|
29
|
-
|
30
9
|
end
|
31
10
|
end
|
@@ -16,7 +16,7 @@ class Admin::EffectiveClassifiedWizardsDatatable < Effective::Datatable
|
|
16
16
|
end
|
17
17
|
|
18
18
|
collection do
|
19
|
-
|
19
|
+
EffectiveClassifieds.ClassifiedWizard.all.deep.done.joins(:classified)
|
20
20
|
end
|
21
21
|
|
22
22
|
end
|
@@ -2,7 +2,7 @@ module Effective
|
|
2
2
|
class ClassifiedsMailer < EffectiveClassifieds.parent_mailer_class
|
3
3
|
|
4
4
|
default from: -> { EffectiveClassifieds.mailer_sender }
|
5
|
-
layout -> { EffectiveClassifieds.mailer_layout
|
5
|
+
layout -> { EffectiveClassifieds.mailer_layout }
|
6
6
|
|
7
7
|
def classified_submitted(resource, opts = {})
|
8
8
|
raise('expected an Effective::Classification') unless resource.kind_of?(Effective::Classified)
|
@@ -24,22 +24,18 @@ EffectiveClassifieds.setup do |config|
|
|
24
24
|
# Automatically approve classified ad submissions, otherwise require admin approval
|
25
25
|
config.auto_approve = false
|
26
26
|
|
27
|
-
# Mailer
|
27
|
+
# Mailer Settings
|
28
|
+
# Please see config/initializers/effective_resources.rb for default effective_* gem mailer settings
|
29
|
+
#
|
28
30
|
# Configure the class responsible to send e-mails.
|
29
31
|
# config.mailer = 'Effective::ClassifiedsMailer'
|
32
|
+
#
|
33
|
+
# Override effective_resource mailer defaults
|
34
|
+
#
|
35
|
+
# config.parent_mailer = nil # The parent class responsible for sending emails
|
36
|
+
# config.deliver_method = nil # The deliver method, deliver_later or deliver_now
|
37
|
+
# config.mailer_layout = nil # Default mailer layout
|
38
|
+
# config.mailer_sender = nil # Default From value
|
39
|
+
# config.mailer_admin = nil # Default To value for Admin correspondence
|
30
40
|
|
31
|
-
# Configure the parent class responsible to send e-mails.
|
32
|
-
# config.parent_mailer = 'ActionMailer::Base'
|
33
|
-
|
34
|
-
# Default deliver method
|
35
|
-
# config.deliver_method = :deliver_later
|
36
|
-
|
37
|
-
# Default layout
|
38
|
-
# config.mailer_layout = 'effective_classifieds_mailer_layout'
|
39
|
-
|
40
|
-
# Default From
|
41
|
-
config.mailer_sender = "no-reply@example.com"
|
42
|
-
|
43
|
-
# Send Admin correspondence To
|
44
|
-
config.mailer_admin = "admin@example.com"
|
45
41
|
end
|
@@ -33,8 +33,8 @@ class CreateEffectiveClassifieds < ActiveRecord::Migration[6.1]
|
|
33
33
|
t.timestamps
|
34
34
|
end
|
35
35
|
|
36
|
-
add_index
|
37
|
-
add_index
|
36
|
+
add_index <%= @classifieds_table_name %>, [:owner_id, :owner_type]
|
37
|
+
add_index <%= @classifieds_table_name %>, :slug
|
38
38
|
|
39
39
|
create_table <%= @classified_wizards_table_name %> do |t|
|
40
40
|
t.string :token
|
@@ -56,7 +56,7 @@ class CreateEffectiveClassifieds < ActiveRecord::Migration[6.1]
|
|
56
56
|
t.datetime :created_at
|
57
57
|
end
|
58
58
|
|
59
|
-
add_index
|
60
|
-
add_index
|
59
|
+
add_index <%= @classified_wizards_table_name %>, [:owner_id, :owner_type]
|
60
|
+
add_index <%= @classified_wizards_table_name %>, :token
|
61
61
|
end
|
62
62
|
end
|
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.2.
|
4
|
+
version: 0.2.3
|
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: 2022-
|
11
|
+
date: 2022-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -213,7 +213,6 @@ files:
|
|
213
213
|
- app/views/effective/classifieds/index.html.haml
|
214
214
|
- app/views/effective/classifieds/show.html.haml
|
215
215
|
- app/views/effective/classifieds_mailer/classified_submitted.html.haml
|
216
|
-
- app/views/layouts/effective_classifieds_mailer_layout.html.haml
|
217
216
|
- config/effective_classifieds.rb
|
218
217
|
- config/routes.rb
|
219
218
|
- db/migrate/01_create_effective_classifieds.rb.erb
|