symphonia 3.3.3 → 3.3.4
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 -1
- data/lib/symphonia/controller_extensions.rb +2 -2
- data/lib/symphonia/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6c7415a71a01a6b56edb94e0740378c2ab62a44bd5c0760ca7fe440390d8902
|
|
4
|
+
data.tar.gz: 89bc3dbdd819d2f726fab69832df952c0ecb4f2b921bc87feb2b69ccc1e7b2f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a96f879ba1312c1ec3921455bc18b269e9aea6c2bed3ba02d356f0a5a5c10f5baaa5daf1cc2941402625af103e1abaffa5401215b3c871db78f98a03781362ca
|
|
7
|
+
data.tar.gz: 0d891fc6530e34a67907864887001e941fe0ea656f6093d84b5d3a2e1148b5cc4895b823ea6ab9ffcb495feb0351a16255000c6d38be6b66ebf95536721154f2
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
-
## [3.3.
|
|
8
|
+
## [3.3.4] - 2020-12-28
|
|
9
|
+
### Fixed
|
|
10
|
+
- default responses (render_40x) works for any format
|
|
11
|
+
## [3.3.3] - 2020-10-24
|
|
9
12
|
### Changed
|
|
10
13
|
- prefill login from email
|
|
11
14
|
- allow login edit for legacy accounts
|
|
@@ -127,14 +127,14 @@ module Symphonia
|
|
|
127
127
|
respond_to do |format|
|
|
128
128
|
format.html { render template: 'common/403', message: :notice_not_authorized, status: 403 }
|
|
129
129
|
format.js { render plain: "alert('#{t :text_access_deny}')", message: :notice_not_authorized, status: 403 }
|
|
130
|
-
format.
|
|
130
|
+
format.any { head 403, message: :notice_not_authorized }
|
|
131
131
|
end
|
|
132
132
|
end
|
|
133
133
|
|
|
134
134
|
def render_404
|
|
135
135
|
respond_to do |format|
|
|
136
136
|
format.html { render template: 'common/404', message: :notice_page_not_found, status: 404 }
|
|
137
|
-
format.
|
|
137
|
+
format.any { head 404, message: :not_found }
|
|
138
138
|
end
|
|
139
139
|
end
|
|
140
140
|
|
data/lib/symphonia/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: symphonia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.3.
|
|
4
|
+
version: 3.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lukas Pokorny
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -604,7 +604,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
604
604
|
- !ruby/object:Gem::Version
|
|
605
605
|
version: '0'
|
|
606
606
|
requirements: []
|
|
607
|
-
rubygems_version: 3.
|
|
607
|
+
rubygems_version: 3.1.4
|
|
608
608
|
signing_key:
|
|
609
609
|
specification_version: 4
|
|
610
610
|
summary: My administration
|