Sha256: 1f3a5ed84ccfa577e657646013da295e3880a699c0471192eb04efc2a9051541

Contents?: true

Size: 393 Bytes

Versions: 62

Compression:

Stored size: 393 Bytes

Contents

module Workarea
  module Admin
    class CommentViewModel < ApplicationViewModel
      def author
        return @author if defined?(@author)

        @author = if model = User.where(id: author_id).first
                    UserViewModel.new(model)
                  end
      end

      def author_name
        return '' unless author.present?
        author.name
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-admin-3.4.13 app/view_models/workarea/admin/comment_view_model.rb
workarea-admin-3.4.12 app/view_models/workarea/admin/comment_view_model.rb