Sha256: c3d030e82e035966d48f5f8221a9ef9a1aa986f2f12634fcc6a28c7359e7ff29
Contents?: true
Size: 814 Bytes
Versions: 3
Compression:
Stored size: 814 Bytes
Contents
module BitPlayer class Slide < ActiveRecord::Base belongs_to :slideshow, class_name: 'BitPlayer::Slideshow', foreign_key: :bit_player_slideshow_id, inverse_of: :slides validates :title, :body, :position, presence: true validates_numericality_of :position, greater_than_or_equal_to: 1 validates_uniqueness_of :position, scope: :bit_player_slideshow_id def render_body markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, space_after_headers: true) markdown.render(body).html_safe end def self.update_positions(ids) transaction do connection.execute "SET CONSTRAINTS slide_position DEFERRED" ids.each_with_index do |id, index| where(id: id).update_all(position: index + 1) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bit_player-0.1.0 | app/models/bit_player/slide.rb |
bit_player-0.0.5 | app/models/bit_player/slide.rb |
bit_player-0.0.4 | app/models/bit_player/slide.rb |