User talk:Snaramb

From Expertiza_Wiki
Revision as of 13:31, 6 December 2018 by Snaramb (talk | contribs) (Created page with "We have added a new column in the ‘responses’ table (in the database), namely, ‘visibility’. Visibility can have 4 values as listed below: File:Example.jpg We have ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

We have added a new column in the ‘responses’ table (in the database), namely, ‘visibility’. Visibility can have 4 values as listed below:

We have maintained these constants in a new file at helpers/response_constants.rb.


module ResponseConstants def _private 0 end

def in_review 1 end

def approved_as_sample 2 end

def rejected_as_sample 3 end end