Skip to content
Snippets Groups Projects
E2EPOC-BuildPortal.cc 661 B
Newer Older
Bensong Liu's avatar
doc
Bensong Liu committed
#include <cis-workflow-gen/quick-include.hpp>

int main() {
#define DEFINE_ACTIVITY(name) \
    Activity name(#name, "FleetAGC.Activities.DelayActivity", "PortalAdminCenterUseageReports." #name)

    DEFINE_ACTIVITY(AdminCenterApp);
    DEFINE_ACTIVITY(OfficeHome);
    DEFINE_ACTIVITY(ShellServices);
    DEFINE_ACTIVITY(PortalUseageReports);
    DEFINE_ACTIVITY(SvcHealthDashboard);
    DEFINE_ACTIVITY(CustomerLockboxUX);

Bensong Liu's avatar
Bensong Liu committed
    auto flow = AdminCenterApp | OfficeHome | ShellServices | PortalUseageReports | SvcHealthDashboard | CustomerLockboxUX;
    println(to_file("E2EPOCBuildPortalWorkflow.xaml"), flow.generateXaml("FleetAGC.Workflows.BuildPortal"));
Bensong Liu's avatar
doc
Bensong Liu committed
}