rename pem

This commit is contained in:
me 2024-10-25 22:38:23 +03:00
parent 8960e73f49
commit cfe7c577e8
3 changed files with 5 additions and 2 deletions

View file

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

View file

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

View file

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