public void fillModel()

in saml-authentication-server/src/main/java/jetbrains/buildServer/auth/saml/plugin/SamlLoginPageExtension.java [47:57]


    public void fillModel(@NotNull Map<String, Object> model, @NotNull HttpServletRequest request) {
        super.fillModel(model, request);
        SamlPluginSettings samlSettings;
        try {
            samlSettings = settingsStorage.load();
        } catch (IOException e) {
            samlSettings = new SamlPluginSettings();
        }
        model.put("samlSettings", samlSettings);
        model.put("loginUrl", getLoginUrl());
    }