LogoLogo
v4.1
  • Docs
  • Connector Configuration
  • Knowledge Base
  • Changelog
v4.1
  • Introduction
  • Migration from 4.0
  • Overview
    • Introduction
    • Component
    • Flow
    • End User Guide
  • Component Definition
    • Basic Structure
    • Manifest
      • name
      • label
      • icon
      • marker
      • author
      • description
      • auth
      • authConfig
      • quota
      • properties
      • inPorts
      • outPorts
      • firePatterns
      • tick
      • private
      • webhook
      • state
      • localization
    • Behaviour
    • Dependencies
    • Authentication
    • Quotas & Limits
    • Example Component
  • Customizing UI
    • Custom Inspector Fields
    • Custom Theme
    • Custom Strings
    • Custom API
    • Custom Component Strings
    • Custom Component Shapes
  • Appmixer Self-Managed
    • Installation
    • Getting Started
    • Custom Component: HelloAppmixer
    • Using Appmixer SDK
    • Using Appmixer API
    • Using OAuth applications
    • Installation GCP
    • System Webhooks
    • Appmixer Architecture
  • API
    • ACL
    • Accounts
    • Apps
    • Authentication
    • Charts
    • Data Stores
    • Files
    • Flows
    • Insights
    • Modifiers
    • People Task
    • Service Configuration
    • Unprocessed Messages
  • Appmixer SDK
    • Getting Started
    • API Reference
      • Constructor
      • API
      • FlowManager
      • Designer
      • InsightsLogs
      • InsightsDashboard
      • InsightsChartEditor
      • Accounts
      • Storage
      • PeopleTasks
      • Components
    • Developer mode
  • Appmixer Backoffice
    • Getting Started
    • Services
  • Tutorials
    • Managing Authentication
    • Sharing Flows
    • Flows Metadata & Filtering
    • People Tasks
    • Customizing modifiers
    • Setting ACL
  • Appmixer CLI
    • Appmixer CLI
  • App Registration
    • DeepAI
    • Google
    • People Tasks
    • Slack
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. App Registration

People Tasks

PreviousGoogleNextSlack

Last updated 4 years ago

Was this helpful?

If the built-in People Tasks component RequestApprovalEmail is triggered, it sends an email with task details. This email contains a link to a frontend page where the user can see the task. To build that link, the component needs to know the frontend URL.

The default value for the PEOPLE_TASKS_DASHBOARD_URL variable is http://localhost:8080/people-tasks

docker-compose.yml example:

  engine:
    environment:
      - PEOPLE_TASKS_DASHBOARD_URL=${PEOPLE_TASKS_DASHBOARD_URL:-http://localhost:8080/people-tasks}

In your installation, this is going to point to your People Tasks Dashboard implementation. You can use the to build that Dashboard or you can write your own. The backend API for that is described .

here
Appmixer SDK