10 lines
125 B
Ruby
10 lines
125 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FileTemplate < ApplicationRecord
|
|
belongs_to :file_type
|
|
|
|
def to_s
|
|
name
|
|
end
|
|
end
|