diff --git a/app/models/bulletin.rb b/app/models/bulletin.rb index 7addada..b541ed1 100644 --- a/app/models/bulletin.rb +++ b/app/models/bulletin.rb @@ -4,14 +4,10 @@ class Bulletin include OrbitCategory::Categorizable include Slug - field :title, type: String, localize: true + field :title, as: :slug_title, type: String, localize: true field :body, type: String, localize: true field :uid, type: String - def generate_slug - self.generate_slug(self.title, self.uid) - end - def self.find_by_param(input) self.find_by(uid: input) end