OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/models/custom_style.rb

21 lines
420 B

class CustomStyle < ActiveRecord::Base
mount_uploader :logo, OpenProject::Configuration.file_uploader
class << self
def current
8 years ago
RequestStore.fetch(:current_custom_style) do
custom_style = CustomStyle.order('created_at DESC').first
if custom_style.nil?
return nil
else
8 years ago
custom_style
end
end
end
end
def digest
updated_at.to_i
end
end