Skip to content

Instantly share code, notes, and snippets.

@yoon
Created August 27, 2014 17:32
Show Gist options
  • Save yoon/1c30d1317494fbc0200f to your computer and use it in GitHub Desktop.
Save yoon/1c30d1317494fbc0200f to your computer and use it in GitHub Desktop.
custom surveyor survey section model for disabling translations
module SurveySectionCustomMethods
def translation(locale)
{:title => self.title, :description => self.description}
end
end
class SurveySection < ActiveRecord::Base
include Surveyor::Models::SurveySectionMethods
include SurveySectionCustomMethods
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment