Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/Areas/Effort/EffortSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class EffortSettings
/// <summary>
/// When true, the harvest and on-demand effort entry auto-create the generic
/// "RES 000R-001" resident-teaching course (CRN "RESID") and its effort records.
/// Defaults to false — the placeholder course is not currently in use.
/// Defaults to false in PROD; Dev and Test enable it to exercise the path.
/// </summary>
public bool AutoCreateGenericRCourse { get; set; }
}
3 changes: 3 additions & 0 deletions web/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
"CMS": {
"LegacyWebrootPath": "C:\\Sites\\https\\VIPER"
},
"EffortSettings": {
"AutoCreateGenericRCourse": true
},
"Hangfire": {
"AutoSchedule": false
},
Expand Down
3 changes: 3 additions & 0 deletions web/appsettings.Test.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
"BaseUrl": "https://secure-test.vetmed.ucdavis.edu/2",
"RedirectToCurrentUser": true
},
"EffortSettings": {
"AutoCreateGenericRCourse": true
},
"AWS": {
"ProfilesLocation": "P:\\viper.net\\awscredentials",
"Profile": "default"
Expand Down
Loading