Retain standard nodeinfo about instances #225
Labels
No labels
approved, awaiting change
bug
configuration
documentation
duplicate
enhancement
extremely low priority
feature request
Fix it yourself
help wanted
invalid
mastodon_api
needs docs
needs tests
not a bug
planned
pleroma_api
privacy
question
static_fe
triage
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: AkkomaGang/akkoma#225
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Ref AkkomaGang/pleroma-fe#146
to do this, and also to do things like capability testing (can we react to this post?), we'll need to pull nodeinfo about instances, maybe once every few days?
just have a trigger on inbound AP which dispatches an oban job that checks if it should pull info
Wort noting, Pleroma started storing nodeinfo metadata in the DB with this MR.
If the same schema fits us, porting this would make things easier for migrations. If it doesn’t fit, avoiding the same table name as Pleroma might be a good idea to at least not introduce migration conflicts.
oh idk why this issue is still open
I implemented this way back
b7e8ce2350
heh, the actual data keys have different names, but the
metadata_updated_at
overlaps but using:naive_datetime
here but when Pleroma also implemented this it used:utc_datetime
.Wonder if/what effects this has on migrations *(will there be errors when accessing the timestamps in one migration direction?)