keysd_rs 0.1.0

gPRC based keysd integration library
Documentation
package client

import (
	"context"
	"net/url"

	"github.com/keys-pub/keys"
)

// AdminCheck performs user & sigchain associated with key by an admin.
// The server periodically checks users and sigchains, but this tells the server
// to do it right away.
// If check is a kid, will check that key.
// If check is "all" (not recommended), it will check all keys.
func (c *Client) AdminCheck(ctx context.Context, check string, admin *keys.EdX25519Key) error {
	params := url.Values{}
	_, err := c.req(ctx, request{Method: "POST", Path: "/admin/check/" + check, Params: params, Key: admin})
	if err != nil {
		return err
	}
	return nil
}