cortex-cms/cortex

View on GitHub
app/models/concerns/cortex/has_firstname_lastname.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cortex
  module HasFirstnameLastname
    extend ActiveSupport::Concern

    included do
      def fullname
        lastname.to_s == '' ? firstname : "#{firstname} #{lastname}"
      end
    end
  end
end