This commit is contained in:
usbharu 2024-05-14 16:06:59 +09:00
parent 19458e9adc
commit f25e9df896
1 changed files with 7 additions and 1 deletions

View File

@ -35,7 +35,13 @@ class UserAPControllerImpl(private val apUserService: APUserService) : UserAPCon
person.context += listOf( person.context += listOf(
StringOrObject("https://www.w3.org/ns/activitystreams"), StringOrObject("https://www.w3.org/ns/activitystreams"),
StringOrObject("https://w3id.org/security/v1"), StringOrObject("https://w3id.org/security/v1"),
StringOrObject(mapOf("manuallyApprovesFollowers" to "as:manuallyApprovesFollowers")) StringOrObject(
mapOf(
"manuallyApprovesFollowers" to "as:manuallyApprovesFollowers",
"sensitive" to "as:sensitive",
"Hashtag" to "as:Hashtag"
)
)
) )
return ResponseEntity(person, HttpStatus.OK) return ResponseEntity(person, HttpStatus.OK)
} }