Complete Jira roadmap for the Team Accounts feature. Contains everything needed to create and manage the issues manually.
- Project: SCRUM (FanIQ One)
- Epics: 2 (+ Epic 3 future)
Team Accounts will allow FanIQ One customers to invite members of their internal staff into their organization's FanIQ One environment. This feature introduces multi-user access and role-based permissions, enabling account owners to invite team members, assign access levels, and control which features each role can use.
The current team accounts implementation uses a dual-authentication architecture built by a previous developer. This document outlines the technical disadvantages of continuing with this approach versus migrating to a unified system.
The Supabase CLI is a powerful tool that enables developers to manage their Supabase projects directly from the terminal. It provides a suite of commands for various tasks, including:
With the CLI, you can streamline your development workflow, automate repetitive tasks, and maintain consistency across different environments. It's an essential tool for both local development and CI/CD pipelines.
You have to set up a nodejs project (Recommended version v22.18.0 to use typescript)
yarn initCreate the file tsconfig.json in the root Documentation
{It's a list of the common methods javascript for a technical tests
| Method | Description | Example |
|---|---|---|
| .substring | returns the part of this string from the start index up to and excluding the end index, or to the end of the string if no end index is supplied. | const str = "Mozilla"; str.substring(1, 3); // Expected output: "oz" str.substring(2); // Expected output: "zilla" |
| .search | string method that searches for a match between a regular expression and a string. It returns the index of the first match, or -1 if the match is not found. | const str = "Hello world!"; const index = str.search(/world/); // returns 6 |