User guide
Quick Start Guide
Dashboard
Overviews
Case detail (Caseoverview)
Case - event
Tasks
Case notes
Documents
User settings
Favorites
Table component
Administrator Guide
Administration
Authentication and Synchronization
Mobile App Setup for Your Environment
Scheme
Dynamic tables
Scripts
Service console
Scheduled Tasks
HR Agenda
Sequences
CSP Headers
Logs
Crons
Access Token Settings & Session Expiration
Template
Roles
Integrations
TAS Forms
TAS Forms
Activating the module on the environment
TAS Forms - secret creation guide for Docker Swarm
Advanced Features & Tips
Filtering in a dynamic sheet using a URL parameter (static)
Search in a dynamic table by column value
Filtering in a dynamic sheet using dynamic conditions
Optimizing Overviews with a Large Number of Cases
DOCX document creation
Planning
Users
Organizational structure
Events
Partners
Product
Business Changelog
Technical Changelog
Version Upgrade Guide
Upgrading to 5.9
Upgrading to 5.3
Dynamic conditions migration
PDF printing adjustment
Editing Task Description vs Task Instructions
Transpiling forEach to a for loop
Rendering HTML on Caseoverview
Upgrading to 5.7
Best Practices for Upgrading from TAS 4 to TAS 5
Technical details
- All Categories /
- Administrator Guide
- Administration /
- Mobile App Setup for Your Environment
Mobile App Setup for Your Environment
The mobile app can be used for free for demo and testing purposes. However, for production use, licensing is required.
Prerequisites for Enabling the Mobile App
To set up the mobile app for your environment, ensure the following two conditions are met:
- Enable the Mobile App in Configuration
Navigate to your configuration settings and enable the mobile app: Your TAS Domain Configuration - Configure Firebase for Push Notifications
To send push notifications, Firebase must be properly configured. You can request this setup as follows:- Internal Users (DEVOPS or Consultants): Request configuration directly.
- Partners: If you haven't received your Firebase credentials yet, submit a request to partners@teamassistant.app.
Downloading & Activating the App
Once the app is set up, users can download it from the store and follow the activation instructions in this video: Watch Activation Guide
Adding Firebase to Configuration (For Partners)
After receiving Firebase configuration details, add the following configuration block to the local.js
file:
firebase: {
auth: {
projectId: 'tas-partner-instance',
privateKey: '-----BEGIN PRIVATE KEY-----\nMIIEvQIBADAN...\n-----END PRIVATE KEY-----',
clientEmail: 'firebase-adminsdk-dmrfh@tas-partner-instance.iam.gserviceaccount.com',
androidAppId: '1:698634540901:android:f613debeab37450103b38c',
androidApiKey: 'AzaSyBI9vyi8f2BcldDe8p2L_11jrWSnPzTi0XU',
iosAppId: '1:698634540901:ios:f8b73dd028a99d7403b38c',
iosApiKey: 'AzaSyB9c7QIAhvjP4CoctuzXX1fBc5V-dujdobk',
senderId: '698634540901',
},
},
This configuration block should be placed at the same level as other settings within local.js
, for example:
module.exports = {
port: process.env.PORT || 8001,
// Other configurations...
firebase: {
auth: {
// Firebase configuration...
},
},
redis: {
host: "redis",
port: 6379,
},
// Additional configurations...
};
Security Recommendations
Sensitive data such as privateKey
and apiKey
should not be stored directly in configuration files. For better security, use Docker Swarm Secrets or other secure storage methods. More details can be found in the installation manual.
Updated
by Anna Gernát