Permalink
Please sign in to comment.
Showing
with
150 additions
and 14 deletions.
- +38 −10 app/assets/javascripts/application.js.erb
- +17 −0 app/assets/stylesheets/application.css
- +20 −0 app/controllers/comments_controller.rb
- +1 −1 app/controllers/settings_controller.rb
- +32 −2 app/models/comment.rb
- +1 −0 app/models/user.rb
- +9 −0 app/views/comments/_comment.html.erb
- +4 −0 app/views/settings/index.html.erb
- +18 −0 app/views/stories/show.html.erb
- +3 −0 config/routes.rb
- +5 −0 db/migrate/20170119192703_add_dragons.rb
- +2 −1 db/schema.rb
| @@ -0,0 +1,5 @@ | ||
| class AddDragons < ActiveRecord::Migration | ||
| def change | ||
| add_column :comments, :is_dragon, :boolean, :default => false | ||
| end | ||
| end |
0 comments on commit
56d3749