32 33 34 35 36 37
# File 'app/models/platform/developer.rb', line 32 def self.for(user) return nil unless user and user.id return nil if Platform::Config.guest_user?(user) return user if user.is_a?(Platform::Developer) find_by_user_id(user.id) end