User talk:Snaramb

From Expertiza_Wiki
Revision as of 13:32, 6 December 2018 by Snaramb (talk | contribs)
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