Skip to content

Commit

Permalink
Merge pull request itpartnersillinois#89 from itpartnersillinois/jonk…
Browse files Browse the repository at this point in the history
…er/FixAutoLoad

Re-add faculty load
  • Loading branch information
bryanjonker-illinois authored Oct 10, 2024
2 parents dbb2cf3 + 7e8dbbe commit 56f6032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uofi-itp-directory-function/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
_ = services.AddScoped<LogHelper>();
_ = services.AddScoped<EmployeeAreaHelper>();
_ = services.AddScoped<AreaHelper>();
_ = services.AddScoped(c => new DirectoryHookHelper(c.GetService<DirectoryRepository>(), ""));
_ = services.AddScoped(c => new DirectoryHookHelper(c.GetService<DirectoryRepository>(), hostContext.Configuration["Values:FacultyLoadUrl"]));
_ = services.AddScoped(c => new EmployeeHelper(c.GetService<DirectoryRepository>(), null, c.GetService<DirectoryContext>(), c.GetService<EmployeeAreaHelper>(), c.GetService<LogHelper>()));
_ = services.AddScoped<QueueManager>();
_ = services.AddScoped(c => new DataWarehouseManager(hostContext.Configuration["Values:DataWarehouseUrl"], hostContext.Configuration["Values:DataWarehouseKey"]));
Expand Down

0 comments on commit 56f6032

Please sign in to comment.