forked from External/greenlight
10 lines
139 B
Ruby
10 lines
139 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationRecord < ActiveRecord::Base
|
|
self.abstract_class = true
|
|
|
|
def to_param
|
|
uid
|
|
end
|
|
end
|