scube-server/app/models/playlist.rb
Thibault Jouan 33f979b573 Add basic playlists management
* Index of playlists
* Create a new playlist
* Basic playlist model with mandatory name
2011-07-12 00:32:06 +00:00

4 lines
70 B
Ruby

class Playlist < ActiveRecord::Base
validates_presence_of :name
end