Pipelines offer PCDs to users via authenticated channels such as feeds. When a user authenticates in order to receive a PCD, we record this in the DB, allowing us to reconstruct a list of authenticated users for purposes such as Semaphore group management.

interface PipelineConsumer {
    commitment: string;
    email: string;
    timeCreated: Date;
    timeUpdated: Date;
}

Properties

commitment: string
email: string
timeCreated: Date
timeUpdated: Date

Generated using TypeDoc