User talk:Snaramb: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
(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 ...")
(No difference)

Revision as of 13:31, 6 December 2018

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