mirror of
https://github.com/neocities/neocities.git
synced 2025-07-20 09:36:00 +02:00
fixes for follows, initial follow event code
This commit is contained in:
parent
2097350a1c
commit
070d8df1db
6 changed files with 24 additions and 9 deletions
|
@ -105,10 +105,16 @@ class Site < Sequel::Model
|
|||
|
||||
def toggle_follow(site)
|
||||
if is_following? site
|
||||
followings_dataset.filter(site_id: site.id).delete
|
||||
follow = followings_dataset.filter(site_id: site.id).first
|
||||
site.events_dataset.filter(follow_id: follow.id).delete
|
||||
follow.delete
|
||||
false
|
||||
else
|
||||
add_following site_id: site.id
|
||||
DB.transaction do
|
||||
follow = add_following site_id: site.id
|
||||
Event.create site_id: site.id, actioning_site_id: self.id, follow_id: follow.id
|
||||
end
|
||||
|
||||
true
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue