HornsAndHooves-publify_core 10.1.0 → 10.1.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4cd1439645737309c9615edba562cd7d51ede8f66a21fe888161ca91c0eacc83
|
|
4
|
+
data.tar.gz: 9a44b960e7718b3fb36aea0e6e24ef22efd98e21c9f6e8dc72d2fa96857a4a26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a099c2cd4321e1f98da962ede37b2419e5c975af1f64ea3149be241ab714bcdf70aa104feae5fe3573321ed0fa3afb41aab40662173fc880647860444dcfd1e9
|
|
7
|
+
data.tar.gz: f88a34421a40fbec2ac11ef84a772369d68ef5b85e9f0d9e6e459dd13bd196f12a94f0e08a85d6a8968f48d93b139f3e610fa0ba4951479b67d6d6f30b375907
|
|
@@ -4,18 +4,18 @@ class AddMissingIndexes < ActiveRecord::Migration[4.2]
|
|
|
4
4
|
set_role "blog_content"
|
|
5
5
|
|
|
6
6
|
def change
|
|
7
|
-
add_index :feedback, [
|
|
7
|
+
add_index :feedback, %i[id type]
|
|
8
8
|
add_index :feedback, :user_id
|
|
9
|
-
add_index :sidebars, [
|
|
9
|
+
add_index :sidebars, %i[id type]
|
|
10
10
|
add_index :contents, :user_id
|
|
11
|
-
add_index :contents, [
|
|
11
|
+
add_index :contents, %i[id type]
|
|
12
12
|
add_index :articles_tags, :tag_id
|
|
13
13
|
add_index :articles_tags, :article_id
|
|
14
14
|
add_index :profiles_rights, :profile_id
|
|
15
15
|
add_index :users, :profile_id
|
|
16
16
|
add_index :users, :text_filter_id
|
|
17
17
|
add_index :users, :resource_id
|
|
18
|
-
add_index :triggers, [
|
|
18
|
+
add_index :triggers, %i[pending_item_id pending_item_type]
|
|
19
19
|
add_index :redirections, :content_id
|
|
20
20
|
add_index :redirections, :redirect_id
|
|
21
21
|
add_index :resources, :article_id
|
|
@@ -19,13 +19,13 @@ class RemoveProfiles < ActiveRecord::Migration[4.2]
|
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
Profile.create!(label: "admin", nicename: "Publify administrator",
|
|
22
|
-
modules: [
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
modules: %i[dashboard articles notes pages feedback
|
|
23
|
+
media themes sidebar profile users
|
|
24
|
+
settings seo])
|
|
25
25
|
Profile.create!(label: "publisher", nicename: "Blog publisher",
|
|
26
|
-
modules: [
|
|
27
|
-
|
|
26
|
+
modules: %i[dashboard articles notes pages feedback
|
|
27
|
+
media profile])
|
|
28
28
|
Profile.create!(label: "contributor", nicename: "Contributor",
|
|
29
|
-
modules: [
|
|
29
|
+
modules: %i[dashboard profile])
|
|
30
30
|
end
|
|
31
31
|
end
|
data/lib/publify_core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: HornsAndHooves-publify_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.1.
|
|
4
|
+
version: 10.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matijs van Zuijlen
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2022-
|
|
14
|
+
date: 2022-09-28 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: aasm
|