]> git.openstreetmap.org Git - rails.git/commit
Changeset discussions
authorŁukasz Gurdek <git@ukasiu.pl>
Sun, 7 Sep 2014 13:25:56 +0000 (14:25 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 23 Oct 2014 20:24:51 +0000 (21:24 +0100)
commit14ac1babc2517320a2c90fa9b4ac36a5a6e68018
treebb8e24b8b17d7390fdefd2e85773f0573e787c9d
parent653b4c93bc3bbd976bfced39790f74917d58d221
Changeset discussions

Add support for commenting on changesets with RSS feeds and email
notification of comments to other commenters and people that have
chosen to subscribe to a changeset.
27 files changed:
.gitignore
app/assets/javascripts/index.js
app/assets/javascripts/index/changeset.js [new file with mode: 0644]
app/assets/stylesheets/common.css.scss
app/controllers/browse_controller.rb
app/controllers/changeset_controller.rb
app/models/changeset.rb
app/models/changeset_comment.rb [new file with mode: 0644]
app/models/notifier.rb
app/models/user.rb
app/views/browse/changeset.html.erb
app/views/changeset/_comment.html.erb [new file with mode: 0644]
app/views/changeset/_comments.rss.builder [new file with mode: 0644]
app/views/changeset/comments_feed.rss.builder [new file with mode: 0644]
app/views/notifier/changeset_comment_notification.html.erb [new file with mode: 0644]
app/views/notifier/changeset_comment_notification.text.erb [new file with mode: 0644]
config/locales/en.yml
config/routes.rb
db/migrate/20140507110937_create_changeset_comments.rb [new file with mode: 0644]
db/migrate/20140519141742_add_join_table_between_users_and_changesets.rb [new file with mode: 0644]
db/structure.sql
lib/osm.rb
test/controllers/changeset_controller_test.rb
test/controllers/relation_controller_test.rb
test/fixtures/changeset_comments.yml [new file with mode: 0644]
test/integration/user_changeset_comments_test.rb [new file with mode: 0644]
test/models/changeset_comment_test.rb [new file with mode: 0644]