fat_free_crm 0.16.1 → 0.16.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/app/controllers/admin/fields_controller.rb +5 -2
- data/app/controllers/admin/plugins_controller.rb +7 -1
- data/app/controllers/admin/settings_controller.rb +5 -1
- data/app/controllers/admin/tags_controller.rb +5 -1
- data/lib/fat_free_crm/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a2cc83bfe13fdffd81f6608cffab843cbc7add9
|
|
4
|
+
data.tar.gz: 6e7827563fb7f910f8bc1b6293e375100abd0faf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a7dbf30ae93fa539b4bd963a366201e0fae146cabd6b02d1d9802f6e13b8e6d42c54d0caf18f6442cd9d9e8ab47e650d41e36b8f8a65a7c4602c8af2f881a17
|
|
7
|
+
data.tar.gz: 6b1ea5c9ee62949d5ee56f471ab8b02772d3edcd73acd808838e2d56553d730d24c93c377d99bd0bdb60668f99c699a556a63218a29c8ad5c284e22a959f324f
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ It does not matter how slowly you go as long as you do not stop.
|
|
|
4
4
|
First they ignore you, then they laugh at you, then they fight you,
|
|
5
5
|
then you win. –- Mahatma Gandhi
|
|
6
6
|
|
|
7
|
+
Mon Jan 22, 2018 (0.16.2)
|
|
8
|
+
---------------------------------------------------------------------
|
|
9
|
+
Fix #687
|
|
10
|
+
|
|
7
11
|
Sat Jan 6, 2018 (0.16.1)
|
|
8
12
|
---------------------------------------------------------------------
|
|
9
13
|
- #653 Fix regression with emails
|
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
|
|
5
5
|
#------------------------------------------------------------------------------
|
|
6
6
|
class Admin::FieldsController < Admin::ApplicationController
|
|
7
|
-
before_action
|
|
8
|
-
|
|
7
|
+
before_action :setup_current_tab, only: [:index]
|
|
9
8
|
load_resource except: %i[create subform]
|
|
10
9
|
|
|
11
10
|
# GET /fields
|
|
@@ -115,4 +114,8 @@ class Admin::FieldsController < Admin::ApplicationController
|
|
|
115
114
|
def field_params
|
|
116
115
|
params[:field].permit!
|
|
117
116
|
end
|
|
117
|
+
|
|
118
|
+
def setup_current_tab
|
|
119
|
+
set_current_tab('admin/fields')
|
|
120
|
+
end
|
|
118
121
|
end
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
|
|
5
5
|
#------------------------------------------------------------------------------
|
|
6
6
|
class Admin::PluginsController < Admin::ApplicationController
|
|
7
|
-
before_action
|
|
7
|
+
before_action :setup_current_tab, only: [:index]
|
|
8
8
|
|
|
9
9
|
# GET /admin/plugins
|
|
10
10
|
# GET /admin/plugins.xml
|
|
@@ -14,4 +14,10 @@ class Admin::PluginsController < Admin::ApplicationController
|
|
|
14
14
|
|
|
15
15
|
respond_with(@plugins)
|
|
16
16
|
end
|
|
17
|
+
|
|
18
|
+
protected
|
|
19
|
+
|
|
20
|
+
def setup_current_tab
|
|
21
|
+
set_current_tab('admin/plugins')
|
|
22
|
+
end
|
|
17
23
|
end
|
|
@@ -4,11 +4,15 @@
|
|
|
4
4
|
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
|
|
5
5
|
#------------------------------------------------------------------------------
|
|
6
6
|
class Admin::SettingsController < Admin::ApplicationController
|
|
7
|
-
before_action
|
|
7
|
+
before_action :setup_current_tab, only: [:index]
|
|
8
8
|
|
|
9
9
|
# GET /admin/settings
|
|
10
10
|
# GET /admin/settings.xml
|
|
11
11
|
#----------------------------------------------------------------------------
|
|
12
12
|
def index
|
|
13
13
|
end
|
|
14
|
+
|
|
15
|
+
def setup_current_tab
|
|
16
|
+
set_current_tab('admin/settings')
|
|
17
|
+
end
|
|
14
18
|
end
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
|
|
5
5
|
#------------------------------------------------------------------------------
|
|
6
6
|
class Admin::TagsController < Admin::ApplicationController
|
|
7
|
-
before_action
|
|
7
|
+
before_action :setup_current_tab, only: %i[index show]
|
|
8
8
|
|
|
9
9
|
load_resource
|
|
10
10
|
|
|
@@ -68,4 +68,8 @@ class Admin::TagsController < Admin::ApplicationController
|
|
|
68
68
|
def tag_params
|
|
69
69
|
params[:tag].permit!
|
|
70
70
|
end
|
|
71
|
+
|
|
72
|
+
def setup_current_tab
|
|
73
|
+
set_current_tab('admin/tags')
|
|
74
|
+
end
|
|
71
75
|
end
|
data/lib/fat_free_crm/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fat_free_crm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.16.
|
|
4
|
+
version: 0.16.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Dvorkin
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2018-01-
|
|
15
|
+
date: 2018-01-22 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: rails
|
|
@@ -1585,7 +1585,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1585
1585
|
version: '0'
|
|
1586
1586
|
requirements: []
|
|
1587
1587
|
rubyforge_project:
|
|
1588
|
-
rubygems_version: 2.
|
|
1588
|
+
rubygems_version: 2.6.14
|
|
1589
1589
|
signing_key:
|
|
1590
1590
|
specification_version: 4
|
|
1591
1591
|
summary: Fat Free CRM
|