rename pem

This commit is contained in:
me 2024-12-17 10:46:59 +02:00
parent 0c49180c46
commit ef487958b6
3 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,5 @@
# fedi # fedi
Activitypub library. Activitypub library.
If you happen to find this, don't use this.

View file

@ -43,7 +43,7 @@ makeActor details =
PublicKey PublicKey
{ pkId = actorUrl <> "#main-key" { pkId = actorUrl <> "#main-key"
, pkOwner = actorUrl , pkOwner = actorUrl
, pkPublicKeyPem = details.pem , pkPublicKeyPem = details.publicPem
} }
} }

View file

@ -35,6 +35,7 @@ data UserDetails
, name :: String , name :: String
, summary :: String , summary :: String
, icon :: Url , icon :: Url
, pem :: Pem , publicPem :: Pem
, privatePem :: FilePath
} }
deriving (Generic, A.FromJSON) deriving (Generic, A.FromJSON)