-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
・ダッシュボード機能の追加。 ・PostgreSQL15対応。 ・ユーザ数が多い環境でパフォーマンスが悪化する問題を解消。 ・Service.jsonのAbsoluteUriを設定している場合、PdfPulginHostに渡されるURLが正しく設定されない問題を解消。 ・レスポンシブ表示での画面下に出る"お知らせ"の表示が更新ボタンなどと重なってしまう問題を解消。 ・日本語、英語以外の言語を選択している場合にサイトの新規作成画面が正しく表示されない問題を解消。 ・Authentication.jsonでSAMLのAttributes設定でMailAddressにnullを設定するとエラーとなる問題を解消。 ・新規作成画面で複数選択可能の分類項目が自動ポストバックされた場合にJSON.parseが失敗する問題を解消。
- Loading branch information
Showing
390 changed files
with
21,211 additions
and
6,628 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using Implem.DefinitionAccessor; | ||
using Implem.IRds; | ||
using Implem.Libraries.Classes; | ||
using Implem.Libraries.Utilities; | ||
namespace Implem.CodeDefiner.Functions.Rds | ||
{ | ||
internal static class SchemaConfigurator | ||
{ | ||
internal static void Configure(ISqlObjectFactory factory) | ||
{ | ||
Consoles.Write(factory.SqlDefinitionSetting.SchemaName, Consoles.Types.Info); | ||
if (factory.SqlDefinitionSetting.IsCreatingDb) | ||
{ | ||
var ocn = new TextData(Parameters.Rds.OwnerConnectionString, ';', '='); | ||
var ucn = new TextData(Parameters.Rds.UserConnectionString, ';', '='); | ||
Def.SqlIoByAdmin(factory).ExecuteNonQuery( | ||
factory: factory, | ||
dbTransaction: null, | ||
dbConnection: null, | ||
commandText: Def.Sql.CreateSchema | ||
.Replace("#Uid_Owner#", ocn["uid"]) | ||
.Replace("#Uid_User#", ucn["uid"]) | ||
.Replace("#SchemaName#", factory.SqlDefinitionSetting.SchemaName)); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.