spina-admin-conferences 2.0.0 → 2.0.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 +4 -4
- data/app/controllers/spina/admin/conferences/conferences_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/delegates_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/dietary_requirements_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/institutions_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/presentation_attachment_types_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/presentation_types_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/presentations_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/rooms_controller.rb +1 -1
- data/app/controllers/spina/admin/conferences/sessions_controller.rb +1 -1
- data/app/views/spina/admin/conferences/conferences/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/delegates/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/dietary_requirements/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/institutions/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/presentation_attachment_types/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/presentation_types/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/presentations/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/rooms/index.html.haml +1 -0
- data/app/views/spina/admin/conferences/sessions/index.html.haml +1 -0
- data/lib/spina/admin/conferences/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4422ca6e7b9b65669d3442a22035ef7f22e4ab3ea7ce817ba416fe73682e04a6
|
|
4
|
+
data.tar.gz: af3da71b479742ac85a894c2ada05967ee7307a07cde2205d353374898e5ae13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92eefe536ddfffab205b45a0888f3f9a88c133a26352810788b5cf927909c83cb016215f4614bed25f3f5fc93e4377f6a081c02359dc854d69a24d26337920c8
|
|
7
|
+
data.tar.gz: d8e69093d00ecf8f14c1f6cedbfdfd1f419de19d8e485f466fb57b9974229b883120949230d1af63b3aa34dcfc9751ceeacd4bcaf9f432ce58c17cfd6a4658e1
|
|
@@ -15,7 +15,7 @@ module Spina
|
|
|
15
15
|
# Renders a list of dietary requirements.
|
|
16
16
|
# @return [void]
|
|
17
17
|
def index
|
|
18
|
-
@dietary_requirements = DietaryRequirement.sorted
|
|
18
|
+
@dietary_requirements = DietaryRequirement.sorted.page(params[:page])
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
# Renders a form for a new dietary requirement.
|
|
@@ -14,7 +14,7 @@ module Spina
|
|
|
14
14
|
# Renders a list of presentation attachment types.
|
|
15
15
|
# @return [void]
|
|
16
16
|
def index
|
|
17
|
-
@presentation_attachment_types = PresentationAttachmentType.sorted
|
|
17
|
+
@presentation_attachment_types = PresentationAttachmentType.sorted.page(params[:page])
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
# Renders a form for a new presentation attachment type.
|
|
@@ -17,7 +17,7 @@ module Spina
|
|
|
17
17
|
# Renders a list of presentation types.
|
|
18
18
|
# @return [void]
|
|
19
19
|
def index
|
|
20
|
-
@presentation_types = PresentationType.sorted
|
|
20
|
+
@presentation_types = PresentationType.sorted.page(params[:page])
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
# Renders a form for a new presentation type.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spina-admin-conferences
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Malčić
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-04-
|
|
11
|
+
date: 2021-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: icalendar
|