Skip to content

Commit

Permalink
Made requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dginty4 committed Jul 25, 2024
1 parent e682c47 commit 72918f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
// dataSourceTaskManagementWorktypeStatusRead retrieves by name the id in question
func dataSourceTaskManagementWorktypeStatusRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
sdkConfig := meta.(*provider.ProviderMeta).ClientConfig
proxy := newTaskManagementWorktypeStatusProxy(sdkConfig)
proxy := getTaskManagementWorktypeStatusProxy(sdkConfig)

worktypeId := d.Get("worktype_id").(string)
name := d.Get("name").(string)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The resource_genesyscloud_task_management_worktype_status.go contains all of the

// getAllAuthTaskManagementWorktypeStatus retrieves all of the task management worktype status via Terraform in the Genesys Cloud and is used for the exporter
func getAllAuthTaskManagementWorktypeStatuss(ctx context.Context, clientConfig *platformclientv2.Configuration) (resourceExporter.ResourceIDMetaMap, diag.Diagnostics) {
proxy := newTaskManagementWorktypeStatusProxy(clientConfig)
proxy := getTaskManagementWorktypeStatusProxy(clientConfig)
resources := make(resourceExporter.ResourceIDMetaMap)

worktypes, resp, err := proxy.worktypeProxy.GetAllTaskManagementWorktype(ctx)
Expand Down

0 comments on commit 72918f6

Please sign in to comment.