
* feat(carbone): add carbone integration * Update list-apps.spec.js to ensure Carbone is the first application in the alphabetically sorted list Previously, the test expected DeepL to be the first in the list. Now, this change ensures that Carbone will take precedence as it will come first in the alphabetical order.
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
import verifyCredentials from './verify-credentials';
|
|
|
|
const isStillVerified = async ($: IGlobalVariable) => {
|
|
await verifyCredentials($);
|
|
return true;
|
|
};
|
|
|
|
export default isStillVerified;
|