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 edit summary
Line 1: Line 1:
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 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 maintained these constants in a new file at helpers/response_constants.rb.
We have maintained these constants in a new file at helpers/response_constants.rb.


<br>
<td>
module ResponseConstants
module ResponseConstants
def _private
def _private
Line 23: Line 21:
end
end
end
end
<br>
<td>

Revision as of 13:32, 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