- Take out intern managers from the manager group (leave non-EU managers for now) 🔺 ✅ 2025-03-19 ![[image.png]]
- Add the Gorzow - OBM employees (under Edyta Rozycka) to view global content + create user group 🔺 ✅ 2025-03-23
- Not showing that the doc is pinned ✅ 2025-03-23
- Message on storage and access of data (compliance disclaimer) #important 🔺 ✅ 2025-03-23 https://primetools.tpv-tech.com/documentation/primetools-portal-data-storage-and-access-compliance-disclaimer
- Events not showing they come from Finance/Legal/IT… hub on Dashboard 🔺 ✅ 2025-03-23
- Pictures of new hires not showing 🔺 ✅ 2025-03-20
- Provide access to nominated testers who will inspect the system and provide us feedback (I will provide the list of names) 🔺 ✅ 2025-03-20
I have the code sample that works for server here including the certificate. case 'ldap-test':
It works on server. However on mac I'll need to apply on of the solutions from here [[#^e1c663|below]]
These are the keys for debuging:
// disabled the certificate on local works:
We need a solution for documenting and easily displaying to colleagues the SOPS. Alain sees it as a clickable flowchart that shows details (SOP) for each of the action-taking steps in the flowchart.
We already have the "document/attachment" module available. Open for development is the flowcart editing module.
- Alain will discuss with Dominika and Richard the solution they had in InBev.
- Check https://www.acadia-software.com/ for inspiration and examples. Check it on Youtube as well
- Check SOPs documenting/storing videos on Youtube for inspiration.
[[✱ Creative Wrap]] | #projects XERO accounting API https://developer.xero.com/documentation/api/accounting/accounts
Jobber accounting API link: https://developer.getjobber.com/docs/building_your_app/app_authorization
You can use the VSCode Command Line Interface (CLI) to list all installed extensions. Open a terminal and run:
code --list-extensions
code --list-extensions --show-versions
You can save this list to a file for backup or sharing purposes by redirecting the output:
code --list-extensions > vscode-extensions.txt
If you want to export your extensions for installation on another machine On the new machine, install all extensions listed in the file using:
xargs -L 1 code --install-extension < vscode-extensions.txt
<?php | |
use Zend\Db\Sql\Expression; | |
use Zend\Db\Sql\Predicate\Operator; | |
use Zend\Db\Sql\Select; | |
use Zend\Db\Sql\Where; | |
use Zend\Db\TableGateway\TableGateway; | |
$adapter = $this->getServiceLocator()->get('Zend\Db\Adapter\Adapter'); | |
$table = new TableGateway('users', $adapter); |