feat(wordpress): add new page trigger

This commit is contained in:
Rıdvan Akca
2023-09-14 16:44:29 +03:00
committed by Ali BARIN
parent 45865d701a
commit da86fe56bd
4 changed files with 65 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import { IGlobalVariable, IJSONObject } from '@automatisch/types';
type Status = {
slug: string;
name: string;
}
};
type Statuses = Record<string, Status>;
export default {
@@ -29,7 +29,7 @@ export default {
statuses.data.push({
value: status.slug,
name: status.name,
})
});
}
return statuses;