Skip to content

Commit

Permalink
feat(schema-provider): add CustomAgentSchemaFileProvider to factory l…
Browse files Browse the repository at this point in the history
…ist #47
  • Loading branch information
phodal committed Aug 2, 2024
1 parent d2d27d5 commit c8999e5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import com.jetbrains.jsonSchema.extension.JsonSchemaProviderFactory

class ShireCustomAgentSchemaProviderFactory : JsonSchemaProviderFactory {
override fun getProviders(project: Project): MutableList<JsonSchemaFileProvider> {
return mutableListOf(SecretPatternSchemaFileProvider(project))
return mutableListOf(
SecretPatternSchemaFileProvider(project),
CustomAgentSchemaFileProvider(project)
)
}
}

0 comments on commit c8999e5

Please sign in to comment.