]> cat aescling's git repositories - mastodon.git/commit
Add profile directory (#9427)
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 6 Dec 2018 16:36:11 +0000 (17:36 +0100)
committerGitHub <noreply@github.com>
Thu, 6 Dec 2018 16:36:11 +0000 (17:36 +0100)
commit73be8f38c115c279e3d3961b98bd2b82b9706b05
treed9b479431676c16580d5e1fa3784cca92d768671
parent155cf126807ab25da4d0e5da55b2d598c981e2ab
Add profile directory (#9427)

Fix #5578
31 files changed:
app/controllers/admin/tags_controller.rb [new file with mode: 0644]
app/controllers/api/v1/accounts/credentials_controller.rb
app/controllers/directories_controller.rb [new file with mode: 0644]
app/controllers/settings/profiles_controller.rb
app/helpers/admin/filter_helper.rb
app/javascript/styles/mastodon/accounts.scss
app/javascript/styles/mastodon/widgets.scss
app/models/account.rb
app/models/account_stat.rb
app/models/account_tag_stat.rb [new file with mode: 0644]
app/models/concerns/account_associations.rb
app/models/concerns/account_counters.rb
app/models/tag.rb
app/policies/tag_policy.rb [new file with mode: 0644]
app/services/update_account_service.rb
app/views/admin/tags/_tag.html.haml [new file with mode: 0644]
app/views/admin/tags/index.html.haml [new file with mode: 0644]
app/views/directories/index.html.haml [new file with mode: 0644]
app/views/layouts/public.html.haml
app/views/settings/profiles/show.html.haml
config/locales/en.yml
config/locales/simple_form.en.yml
config/navigation.rb
config/routes.rb
db/migrate/20181203003808_create_accounts_tags_join_table.rb [new file with mode: 0644]
db/migrate/20181203021853_add_discoverable_to_accounts.rb [new file with mode: 0644]
db/migrate/20181204193439_add_last_status_at_to_account_stats.rb [new file with mode: 0644]
db/migrate/20181204215309_create_account_tag_stats.rb [new file with mode: 0644]
db/schema.rb
spec/fabricators/account_tag_stat_fabricator.rb [new file with mode: 0644]
spec/models/account_tag_stat_spec.rb [new file with mode: 0644]