- Updated `UpdateMailing` to convert dates from UTC to local time. - Renamed `GetTargetSample` to `TestTargetAsync` in `TargetsController`. - Added `ConnectionStringTemplate` to `appsettings.Development.json`. - Introduced `TestTargetSql` in `appsettings.json` for SQL queries. - Created a new `TargetSample` class for target sample data structure. - Updated `ITargetRepository` and `ITargetService` interfaces for new method signatures. - Implemented `TestTargetAsync` in `TargetRepository` for sample data retrieval. - Enhanced `MailingEdit.tsx` with new imports and validation for date fields. - Added `MailingView` component for displaying mailing details. - Introduced `ScheduleMailings` component for managing scheduled mailings. - Updated `TargetSampleViewer` to accommodate new data structure. - Modified routing in `App.tsx` to include scheduled mailings. - Adjusted `NewMailings` component to manage mailing updates and removals.
10 lines
340 B
JSON
10 lines
340 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"ConnectionStringTemplate": "data source=##server_name##,##port##;initial catalog=##database_name##;User ID=##username##;Password=##password##;persist security info=False;packet size=4096;TrustServerCertificate=True;"
|
|
}
|