Sha256: e7871125865d46b396d7de5e5fe038edfac3c35dfdbc2477f5b8e00c758e6516
Contents?: true
Size: 611 Bytes
Versions: 6
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true # Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ class List < ActiveRecord::Base validates_presence_of :name validates_presence_of :url belongs_to :user # Parses the controller from the url def controller (url || "").sub(%r{\A/}, '').split(%r{/|\?}).first end ActiveSupport.run_load_hooks(:fat_free_crm_list, self) end
Version data entries
6 entries across 6 versions & 1 rubygems