Instruqt Docs
  • 🚩Getting started
    • Overview
    • Setting up
      • Study Room
    • Quickstart
  • 🛤️Tracks
    • Manage tracks
      • Create tracks
      • Edit locally
      • Test tracks
      • Track logs
      • Track time limits
      • Track feedback
      • Developer workflow
      • Track tags
      • Track authors
      • Delete tracks
      • Custom layouts
      • Version control
      • Loading experience
    • Challenges
      • Create challenges
      • Challenge tabs
      • Challenge order
      • Skip challenges
      • Add quizzes
      • Assignment display
      • Assignment editor
    • Share tracks
      • Live Events
        • Instructor tools
      • Track invites
      • Embed tracks
      • Landing pages
  • 🏖️Sandboxes
    • Overview
    • Sandbox hosts
      • Add hosts
      • Custom VM images
      • Custom container images
      • Public images
      • Windows VMs
      • Website service
      • SSL certificates
    • Cloud accounts
      • Securing your cloud accounts
      • Cloud Client
      • AWS accounts
        • AWS Environment Variables
        • AWS Managed Policies
        • AWS IAM Policies
        • AWS SCP Policies
      • Azure subscriptions
        • Azure Environment Variables
        • Azure Roles
        • Azure Resource Providers
      • GCP projects
        • GCP Environment Variables
        • GCP IAM Permissions
    • Lifecycle scripts
      • Scripting overview
      • Track scripts
      • Challenge scripts
      • Example scripts
      • Helper scripts
    • UI Checks
    • Global Sandbox Settings
      • Hot start
      • Sandbox presets
      • Custom resources
      • Cloud services and regions
        • Allowed services and regions
    • Secrets and variables
      • Runtime variables
      • Runtime parameters
      • Secrets
  • ⚙️Settings
    • Integrations
      • Salesforce (Beta)
      • HubSpot (Beta)
      • HubSpot (Using zapier)
      • LTI
      • Version control
        • GitHub
    • Authentication
      • SSO
      • API keys
    • Platform
      • API
      • Webhooks
      • Track limits
  • 💡Reference
    • Feature overview
    • Instruqt CLI
      • Commands
      • Configuration files
      • Assets
    • Instruqt platform
      • Networking
      • Host machine types
      • Quotas and limits
      • Roles and permissions
      • Network access
      • Requirements
  • 🛟Resources
    • Content design tips
    • Advanced use cases
    • Templates
    • FAQ
      • Running Windows Client Hosts on Instruqt
      • Using Cleanup Scripts in SaaS and Cloud Environments
      • Instruqt Regional Configurations and Restrictions
      • Troubleshooting Instruqt CLI Authentication Issues
      • Copy a Track from One Organization to Another via CLI
      • Network Configuration: IP and MAC Address Control
      • Container Troubleshooting in Instruqt
Powered by GitBook
On this page
  • Before you begin
  • Add a track author
  • Remove a track author

Was this helpful?

Edit on GitHub
  1. Tracks
  2. Manage tracks

Track authors

Add and remove authors to tracks

PreviousTrack tagsNextDelete tracks

Last updated 10 months ago

Was this helpful?

Instruqt users with the owner or content creator role can edit tracks by default. But you can also give Instruqt users with the member role edit rights by assigning them as a track author. This is handy when you want to give an Instruqt user the edit right for some specific track or tracks, but not all.

Before you begin

You need to have the owner or content creator role for setting the track authors. Furthermore, if you want to set track authors with Instruqt CLI, you need to have their email addresses with which they are registered as team members.

Add a track author

You can add track authors from the Web UI or the Instruqt CLI:

  1. Click the track you want to add track authors to.

  2. Click the authors' avatars at the top of the page.

  3. Click Add author.

  4. In the Add author field, enter the member's name you want to add.

  5. In the Authors list, select the wanted team member.

  6. Click Close.

  1. Open the track.yml file of the track where you want to add a track author.

  2. Add the email of the member you want to set as track author to the developers property:

    developers:
    - jennifer@mycorp.com
    - brandon@mycorp.com
    - newbie@mycorp.com
  3. Save the track.yml file and push your track to the Instruqt platform:

    instruqt track push

Remove a track author

You can remove track authors from the Web UI or the Instruqt CLI:

  1. Click the track you want to remove track authors from.

  2. Click the authors' avatars at the top of the page.

  3. Hover over the track author you want to remove until the button shows up.

  4. Click to remove the track author.

  5. Click Close.

  1. Open the track.yml file of the track where you want to remove a track author.

  2. Delete the whole line of the member you want to remove as track author from the developers property:

    developers:
    - jennifer@mycorp.com
    - brandon@mycorp.com
    - newbie@mycorp.com

    ↓

    developers:
    - jennifer@mycorp.com
    - brandon@mycorp.com
  3. Save the track.yml file and push your track to the Instruqt platform:

    instruqt track push
🛤️