Sha256: cc050dfb183fb6d146e9f0aba5a41093b3f3a685b27fc8d5e1c522e5eaaf9e3d
Contents?: true
Size: 245 Bytes
Versions: 11
Compression:
Stored size: 245 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 extend DefaultAccessible end end
Version data entries
11 entries across 11 versions & 2 rubygems