2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class Appearance < Grape::Entity
|
|
|
|
expose :title
|
|
|
|
expose :description
|
|
|
|
|
|
|
|
expose :logo do |appearance, options|
|
|
|
|
appearance.logo.url
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :header_logo do |appearance, options|
|
|
|
|
appearance.header_logo.url
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :favicon do |appearance, options|
|
|
|
|
appearance.favicon.url
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :new_project_guidelines
|
2020-05-24 23:13:21 +05:30
|
|
|
expose :profile_image_guidelines
|
2020-03-13 15:44:24 +05:30
|
|
|
expose :header_message
|
|
|
|
expose :footer_message
|
|
|
|
expose :message_background_color
|
|
|
|
expose :message_font_color
|
|
|
|
expose :email_header_and_footer_enabled
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|