9 lines
344 B
Java
9 lines
344 B
Java
package com.cloudhandson.vpdbackoffice.config;
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
/** Deployment-provided allow-list for bundled security SQL shown by the backoffice. */
|
|
@ConfigurationProperties(prefix = "backoffice.security-sql-scripts")
|
|
public record SecuritySqlScriptProperties(String scripts) {
|
|
}
|