| 225 | // ActorID is the ID of the actor to refresh. |
| 226 | ActorID snowflake.ID `gorm:"uniqueIndex;not null;"` |
| 227 | // Actor is the actor to refresh. |
| 228 | Actor *Actor `gorm:"constraint:OnDelete:CASCADE;<-:false;"` |
| 229 | } |
| 230 | |
| 231 | // MaybeExcludeReplies returns a query that excludes replies if the request contains |
| 232 | // the exclude_replies parameter. |
nothing calls this directly
no outgoing calls
no test coverage detected