OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/cells/components/on_off_status_cell.rb

16 lines
314 B

module Components
##
# A language switch and text area for updating a localized text setting.
class OnOffStatusCell < ::RailsCell
options :on_text
options :on_description
options :off_text
options :off_description
options :is_on
def enabled?
!!model[:is_on]
end
end
end