ike18t/spotify_jukebox

View on GitHub
app/models/user.rb

Summary

Maintainability
A
0 mins
Test Coverage
class User < ModelBase
  attr_accessor :name
  attr_writer :enabled
  attr_reader :id, :image_url

  def enabled?
    @enabled == true
  end
end