mgabdev
dcbbd51d2a
Removing chat messages stream for now
...
• Removing:
- chat messages stream for now
2021-01-25 16:38:22 -05:00
mgabdev
5600c94f5a
Fixed issue with active icons in action bar for like, repost if no active user
...
• Fixed:
- issue with active icons in action bar for like, repost if no active user
2021-01-25 16:01:55 -05:00
mgabdev
48ecd800cf
Removed chat counters in admin account dashboard
...
• Removed:
- chat counters in admin account dashboard
2021-01-25 16:00:49 -05:00
mgabdev
154aaecc5f
Updated StatusFilter private scope functions
...
• Updated:
- StatusFilter private scope functions
2021-01-25 15:58:52 -05:00
mgabdev
b4ba3c70ef
Revert streaming removals 2c8b4f7fb
, 574b45e04
, 8313f4b11
...
• Revert:
- streaming removals 2c8b4f7fb
, 574b45e04
, 8313f4b11
2021-01-25 15:52:52 -05:00
mgabdev
e8a436f865
Fix issue with first return value of FetchLinkCardService.html method
...
7f1c56954b
2021-01-25 15:50:10 -05:00
mgabdev
ba4fb61712
Fixed issue in account StatusesController pagination for cached timelines
...
• Fixed:
- issue in account StatusesController pagination for cached timelines
2021-01-25 15:45:11 -05:00
mgabdev
4f3df89911
Removed unused chat_messages route from Navigation for admin dashboard
...
• Removed:
- unused chat_messages route from Navigation for admin dashboard
2021-01-25 13:52:52 -05:00
mgabdev
bda2f6b60f
Removed Chat link from HomePage
...
• Removed:
- Chat link from HomePage
2021-01-25 13:02:26 -05:00
mgabdev
fdef75a4f5
Removed chat buttons from ProfileHeader, DeckSidebar
...
• Removed:
- chat buttons from ProfileHeader, DeckSidebar
2021-01-25 12:42:46 -05:00
mgabdev
081f59c872
Removing Chat/Dms for now
...
• Removing:
- Chat/Dms for now
2021-01-25 12:23:17 -05:00
Fosco Marotto
01d736c6b2
[group] Change group sorting default back to newest.
2021-01-25 10:53:11 -05:00
Fosco Marotto
81489b7a17
[explore] Remove group posts from explore page.
2021-01-25 02:35:10 -05:00
rubic0n
2952c9f59d
Simplify db config
2021-01-24 23:57:30 -06:00
rubic0n
1b9349bc52
Remove unnecessary queries from requested conversations count
2021-01-24 23:19:20 -06:00
Fosco Marotto
4adbadddaa
[home] Refactor the home timeline query
2021-01-24 20:11:21 -05:00
Fosco Marotto
3f6e8a62fd
[groups] Change default sorts for groups and groups collection
2021-01-24 15:21:09 -05:00
Fosco Marotto
1c647b0b06
[reset] cleanup
2021-01-24 13:50:51 -05:00
admin
553ca5afa2
Revert "user master for oauth"
...
This reverts commit 07b9acc347
2021-01-24 16:36:00 +00:00
admin
5d13162204
Revert "Merge branch 'develop' of https://code.gab.com/gab/social/gab-social into develop"
...
This reverts commit ccf98d2002
2021-01-24 16:29:57 +00:00
admin1
ccf98d2002
Merge branch 'develop' of https://code.gab.com/gab/social/gab-social into develop
2021-01-24 11:20:23 -05:00
admin1
07b9acc347
user master for oauth
2021-01-24 11:18:02 -05:00
Fosco Marotto
d8230aeaa0
Revert "[home] refactor the home timeline query"
...
This reverts commit d39664b827
.
2021-01-23 23:35:52 -05:00
Fosco Marotto
d39664b827
[home] refactor the home timeline query
2021-01-23 23:23:55 -05:00
Fosco Marotto
59b1752797
[groups collection] disable custom phrase muting temporarily
2021-01-23 21:38:17 -05:00
Fosco Marotto
2e9562e2fc
[home] Reduce following fanout to recent users
2021-01-23 21:36:17 -05:00
Fosco Marotto
acea03da38
Disable mute phrases on the home timeline
2021-01-23 20:31:27 -05:00
Fosco Marotto
645def5f96
SessionActivation and groups query change
2021-01-23 18:21:31 -05:00
Fosco Marotto
63ad3a1590
[doorkeeper] Attempt to fix oauth connect issues.
2021-01-23 16:33:48 -05:00
Fosco Marotto
8d09044ee4
[doorkeeper] Attempt to fix oauth connect issues.
2021-01-23 16:18:15 -05:00
admin
4fe747baf7
Merge branch 'rails_6' into 'gab_provision'
...
Upgrade to Rails 6
See merge request gab/social/gab-social!49
2021-01-23 20:18:28 +00:00
Fosco Marotto
588894e2c2
[replication] Try master if replica is missing status.
2021-01-23 14:43:01 -05:00
Fosco Marotto
41790e4894
Temporarily disable inefficient filter in statuses controller.
2021-01-23 13:13:05 -05:00
rubic0n
28beb28a78
Upgrade to Rails 6
...
- Added listen gem because rails app:update failed without it
- Removes nsa gem because it requires activesupport < 6
Oddly, there's a newer version per GitHub that's not on RubyGems
that raises the requirement to < 7. But, we need a new release
before we can use that.
- Upgrade rails-i18n to v6, for Rails 6 compatibility
- Remove redis-rails since it requires Rails < 6, but we can just use
the regular Rails :redis_cache_store that was introduced in 5.2.
- Run `rails app:update`
- Had to weed through the `config/environments` changes to pick up
newly added settings, while not losing settings that were
intentionally configured
- This generated config/initializers/new_framework_defaults_6_0.rb.
The goal is to uncomment all of the settings in that file. Once
they're all uncommented, delete the file and edit
config/application.rb's load_defaults to be 6.0.
- force_ssl controller method is deprecated in favor of a Rails
config setting.
- bin/setup was generated by Rails
- Verbose query logging in development is really helpful. It shows
you what line of code caused a query to execute.
- Calling establish_connection after worker boot isn't necessary
with ActiveRecord anymore. ActiveRecord handles it gracefully.
- Rails generated a migration to add a foreign key for ActiveStorage.
Gab currently doesn't use ActiveStorage, and instead uses Paperclip
(since ActiveStorage didn't exist when Mastadon started). So, this
change isn't relevant to Gab.
- Added ` || ''` in the profiles controller, because I was unable
to save a change to a newly created profile. (This probably
explains the 500 error I received on prod Gab recently.)
2021-01-23 09:01:31 -06:00
rubic0n
70c29c6cbd
Fix "ERR! error: password authentication failed for user "vagrant""
2021-01-23 09:00:35 -06:00
Fosco Marotto
6c2a60b378
Fix previous commit.
2021-01-23 04:30:20 -05:00
Fosco Marotto
b33c16b131
Add a date limit on accounts-statusescontroller without auth
2021-01-23 04:27:48 -05:00
Fosco Marotto
940b6eb392
[group_collection] reduce date limit
2021-01-23 03:16:57 -05:00
Fosco Marotto
958e8aad3a
[group_collection] Change to -my groups- timeline
2021-01-23 03:13:47 -05:00
mgabdev
3719a6cfd7
Added checks to suspension to for pro, verified, donor, investor accounts
...
• Added:
- checks to suspension to for pro, verified, donor, investor accounts
2021-01-23 01:41:35 -05:00
rubic0n
590dfc97e1
Run pending migrations
2021-01-22 22:53:38 -06:00
rubic0n
4f4f248fa1
postgresql_makara adapter is Postgres, not MySQL
2021-01-22 22:53:38 -06:00
rubic0n
194971da19
Install Redis 4+ since Sidekiq 5 needs that
2021-01-22 22:53:38 -06:00
Fosco Marotto
1e5d12497c
[group collection] default to hot posts
2021-01-22 00:46:51 -05:00
Fosco Marotto
d35550e535
[home] Show a status if you posted a filtered word
2021-01-22 00:17:25 -05:00
Fosco Marotto
bd3fb4994a
[home feed] Still chipping away.
2021-01-22 00:09:26 -05:00
Fosco Marotto
8cc3f549e6
[home feed] Another fix.
2021-01-22 00:06:14 -05:00
Fosco Marotto
94a04d3b54
[home timeline] Fix query condition
2021-01-21 23:56:31 -05:00
Fosco Marotto
fb3b754570
[home time] Alternative method for querying the home timeline
2021-01-21 23:34:14 -05:00
Fosco Marotto
e9cf46b4bc
Reverting home timeline changes
2021-01-21 18:05:24 -05:00