Module: HS::ReviewStatus
Constant Summary collapse
- REVIEW_STATUSES =
Possible values for review status:
-
nonenot reviewed and/or not translated, needs edit or translation -
translatedinitial translatation was done, needs edit -
firstfirst editorial review was done -
secondsecond editorial review was done -
finalfinal editorial review was done
-
%w[none translated first second final].freeze
Instance Attribute Summary collapse
Instance Attribute Details
#review_status ⇒ Object
16 17 18 19 |
# File 'lib/hs/models/review_status.rb', line 16 def review_status return 'none' unless REVIEW_STATUSES.include?(@review_status) @review_status end |