mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- Added ManualAPI for manually triggering workflows via GET and POST requests. - Introduced WorkflowAPI for updating workflows with authorization checks. - Created documentation for JavaScript and Webhook components. - Established WorkflowFeatureSet to initialize routing and job processing. - Developed QueueWorkflow service for managing workflow queue operations. - Implemented RunWorkflow service to execute workflows with error handling and logging. - Added utility for loading component metadata dynamically.
21 lines
616 B
TypeScript
21 lines
616 B
TypeScript
import DataMigrationBase from "./DataMigrationBase";
|
|
|
|
export default class MoveTelemetryServiceTokenToTelemetryIngestionKey extends DataMigrationBase {
|
|
public constructor() {
|
|
super("MoveTelemetryServiceTokenToTelemetryIngestionKey");
|
|
}
|
|
|
|
public override async migrate(): Promise<void> {
|
|
/*
|
|
* This migration is no longer needed as the telemetryServiceToken field
|
|
* has been removed from the Service model. The migration was used to move
|
|
* tokens from TelemetryService to TelemetryIngestionKey.
|
|
*/
|
|
return;
|
|
}
|
|
|
|
public override async rollback(): Promise<void> {
|
|
return;
|
|
}
|
|
}
|