Sha256: 649b319585ba728a699c9fb3975c69824a623496c1954e065da11cd3589e3c70
Contents?: true
Size: 257 Bytes
Versions: 6
Compression:
Stored size: 257 Bytes
Contents
module Cms class Redirect < ActiveRecord::Base validates_presence_of :from_path, :to_path validates_uniqueness_of :from_path def self.from(path) where(:from_path => path).first end attr_accessible :from_path, :to_path end end
Version data entries
6 entries across 6 versions & 1 rubygems