Skip to content

Add fingerprint to metabase #356

@christoph-maurer

Description

@christoph-maurer

@simon-wacker Can I exchange

   mutation {
     sendKeys(input: {
       asciiArmoredKeys: <ASCII_ARMORED_KEYS>
       keyFingerprint: <SIGNING_KEY_FINGERPRINT>
     }) { }
   }

at

asciiArmoredKeys: <ASCII_ARMORED_KEYS>

by

mutation {
  allowRepresentativeToSignData(
    input: {
      institutionId: <UUID_INSTITUTION>
      userId: <UUID_USER> 
    }
  ) {
    errors {
      code
      message
      path
    }
  addKeyFingerprint(
    input: { institutionId: <UUID_INSTITUTION>, keyFingerprint: <SIGNING_KEY_FINGERPRINT>, userId: <UUID_USER> }
  ) {
    keyFingerprint
  }
}

Then upload your public key to https://keys.openpgp.org/ with
`gpg --export <SIGNING_KEY_FINGERPRINT> | curl -T - https://keys.openpgp.org`
and verify your email address.

Metadata

Metadata

Labels

ISEFraunhofer Institute for Solar Energy Systems ISE

Type

No type

Projects

Status

✅ Done

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions