adherent 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35533b281243230c5493fd558e48b15bd487f83a
|
4
|
+
data.tar.gz: 7d2494fa3fe489b022ba235d68b547a6723faf73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cf52055be83fcf4433105b50f4a3695563e3800d4d100dd03d72e9d0ad024f859f101daebaa91897e8b58a6172086a5c703d7e8a286d025b350ca8ab314a8fc
|
7
|
+
data.tar.gz: 86ecf19ce49c98e01bc1d53719b6861b03490310633f557d1f46257395fb747ec19c6a887a9d1def50b701494a1fe5a7e6e066c45b0faa74f1ff4912210b2159
|
@@ -9,6 +9,12 @@ class Adherent::ApplicationController < ApplicationController
|
|
9
9
|
def dashed_date(date)
|
10
10
|
I18n.l(date, format:'%d-%b-%Y').gsub('.', '')
|
11
11
|
end
|
12
|
+
|
13
|
+
protected
|
14
|
+
|
15
|
+
def find_member
|
16
|
+
@member = @organism.members.find(params[:member_id])
|
17
|
+
end
|
12
18
|
|
13
19
|
end
|
14
20
|
|
data/lib/adherent/version.rb
CHANGED
@@ -17,5 +17,6 @@ module Adherent
|
|
17
17
|
# VERSION = '0.2.8' # Insertion icone et action export csv xls pour members
|
18
18
|
# VERSION = '0.2.9' # Mémorisation choix longueur liste des dataTables
|
19
19
|
# VERSION = '0.3.0' # Passage à Rails 4.1
|
20
|
-
VERSION = '0.3.1' # Modifications pour le passage de flc à noschema
|
20
|
+
# VERSION = '0.3.1' # Modifications pour le passage de flc à noschema
|
21
|
+
VERSION = '0.3.2' # find_member est maintenant défini dans ApplicationController
|
21
22
|
end
|