mirror of https://github.com/usbharu/Hideout.git
fix: ユーザーごとのAPのurlを修正
This commit is contained in:
parent
e44d0b545f
commit
d77d5c77b0
|
@ -45,7 +45,6 @@ fun Application.register(userAuthService: IUserAuthService) {
|
||||||
|
|
||||||
val hash = userAuthService.hash(password)
|
val hash = userAuthService.hash(password)
|
||||||
userAuthService.registerAccount(username,hash)
|
userAuthService.registerAccount(username,hash)
|
||||||
call.sessions.set(UserSession(username))
|
|
||||||
// call.respondRedirect("/login")
|
// call.respondRedirect("/login")
|
||||||
call.respondRedirect("/users/$username")
|
call.respondRedirect("/users/$username")
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ import dev.usbharu.hideout.config.Config
|
||||||
class ActivityPubUserService(private val userService: UserService) {
|
class ActivityPubUserService(private val userService: UserService) {
|
||||||
suspend fun generateUserModel(name:String):Person{
|
suspend fun generateUserModel(name:String):Person{
|
||||||
val userEntity = userService.findByName(name)
|
val userEntity = userService.findByName(name)
|
||||||
val userUrl = "${Config.configData.hostname}/$name"
|
val userUrl = "${Config.configData.hostname}/users/$name"
|
||||||
return Person(
|
return Person(
|
||||||
emptyList(),
|
emptyList(),
|
||||||
"Icon",
|
"Icon",
|
||||||
|
|
Loading…
Reference in New Issue