]> cat aescling's git repositories - mastodon.git/commit
Mute button progress so far. WIP, doesn't entirely work correctly.
authorKit Redgrave <qwertyitis@gmail.com>
Mon, 6 Feb 2017 01:51:56 +0000 (19:51 -0600)
committerKit Redgrave <qwertyitis@gmail.com>
Thu, 2 Mar 2017 04:31:21 +0000 (22:31 -0600)
commit442fdbfc5309f46c23a073829e5fe16d10c7c6ca
treeee8195e874e83722990cfaca7b65fc54383caaf9
parent89fc2d7f4810ecdf66b17543f4603c1089a0c3f5
Mute button progress so far. WIP, doesn't entirely work correctly.
26 files changed:
app/assets/javascripts/components/actions/accounts.jsx
app/assets/javascripts/components/containers/account_container.jsx
app/assets/javascripts/components/containers/status_container.jsx
app/assets/javascripts/components/features/account/components/action_bar.jsx
app/assets/javascripts/components/features/account_timeline/components/header.jsx
app/assets/javascripts/components/features/account_timeline/containers/header_container.jsx
app/assets/javascripts/components/reducers/relationships.jsx
app/controllers/api/v1/accounts_controller.rb
app/controllers/api/v1/mutes_controller.rb [new file with mode: 0644]
app/lib/feed_manager.rb
app/models/account.rb
app/models/mute.rb [new file with mode: 0644]
app/models/status.rb
app/services/mute_service.rb [new file with mode: 0644]
app/services/unmute_service.rb [new file with mode: 0644]
app/views/api/v1/accounts/relationship.rabl
app/views/api/v1/mutes/index.rabl [new file with mode: 0644]
config/routes.rb
db/migrate/20170301222600_create_mutes.rb [new file with mode: 0644]
db/schema.rb
spec/controllers/api/v1/accounts_controller_spec.rb
spec/controllers/api/v1/mutes_controller_spec.rb [new file with mode: 0644]
spec/fabricators/mute_fabricator.rb [new file with mode: 0644]
spec/models/mute_spec.rb [new file with mode: 0644]
spec/services/mute_service_spec.rb [new file with mode: 0644]
spec/services/unmute_service_spec.rb [new file with mode: 0644]