Add isConfigured to application registration in App admin panel#20326
Add isConfigured to application registration in App admin panel#20326
Conversation
📊 API Changes ReportGraphQL Schema ChangesGraphQL Schema Changes[error] Error: Unable to read JSON file: /home/runner/work/twenty/twenty/main-schema-introspection.json: Not valid JSON content GraphQL Metadata Schema ChangesGraphQL Metadata Schema Changes[error] Error: Unable to read JSON file: /home/runner/work/twenty/twenty/main-metadata-schema-introspection.json: Not valid JSON content REST API Analysis ErrorError OutputREST Metadata API Analysis ErrorError Output |
Weiko
left a comment
There was a problem hiding this comment.
async isConfigured(applicationRegistrationId: string): Promise<boolean> {
const variables = await this.findVariablesByRegistrationId(
applicationRegistrationId,
);
const requiredSecrets = variables.filter((v) => v.isSecret && v.isRequired);
return requiredSecrets.every((v) => v.isFilled);
}Why only "secret" variables?
After
Added "Configured" column in admin panel apps tab

Add a banner to ask to configure the application
