|
@@ -31,7 +31,7 @@ class Participant < ApplicationRecord
|
31
|
31
|
true => I18n.t('activities.state.present'),
|
32
|
32
|
false => I18n.t('activities.state.absent'),
|
33
|
33
|
nil => I18n.t('activities.state.unknown')
|
34
|
|
- }
|
|
34
|
+ }.freeze
|
35
|
35
|
|
36
|
36
|
# @return [String]
|
37
|
37
|
# the name for the Participant's current state in the current locale.
|
|
@@ -43,7 +43,7 @@ class Participant < ApplicationRecord
|
43
|
43
|
true => 'ATTENDING',
|
44
|
44
|
false => 'CANCELLED',
|
45
|
45
|
nil => 'TENTATIVE'
|
46
|
|
- }
|
|
46
|
+ }.freeze
|
47
|
47
|
|
48
|
48
|
# @return [String]
|
49
|
49
|
# the ICal attending response.
|