Skip to content

Commit c7b5cc0

Browse files
committed
Renamed solution to 'Integrations'
1 parent 15bce44 commit c7b5cc0

27 files changed

+51
-52
lines changed

.gitignore

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -388,11 +388,11 @@ FodyWeavers.xsd
388388
*.sln.iml
389389

390390
# Solution specific
391-
src/Umbraco.Forms.Extensions.TestSite/App_Data
392-
src/Umbraco.Forms.Extensions.TestSite/App_Plugins
393-
src/Umbraco.Forms.Extensions.TestSite/config
394-
src/Umbraco.Forms.Extensions.TestSite/css
395-
src/Umbraco.Forms.Extensions.TestSite/Media
396-
src/Umbraco.Forms.Extensions.TestSite/scripts
397-
src/Umbraco.Forms.Extensions.TestSite/Umbraco
398-
src/Umbraco.Forms.Extensions.TestSite/Views
391+
src/Umbraco.Forms.Integrations.TestSite/App_Data
392+
src/Umbraco.Forms.Integrations.TestSite/App_Plugins
393+
src/Umbraco.Forms.Integrations.TestSite/config
394+
src/Umbraco.Forms.Integrations.TestSite/css
395+
src/Umbraco.Forms.Integrations.TestSite/Media
396+
src/Umbraco.Forms.Integrations.TestSite/scripts
397+
src/Umbraco.Forms.Integrations.TestSite/Umbraco
398+
src/Umbraco.Forms.Integrations.TestSite/Views
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
function hubspotResource($http, umbRequestHelper) {
22

33
return {
4-
fetch: function (id) {
5-
return umbRequestHelper.resourcePromise(
6-
$http.get(
7-
umbRequestHelper.getApiUrl(
8-
"packageInstallApiBaseUrl",
9-
"Fetch",
10-
[{ packageGuid: id }])),
11-
'Failed to download package with guid ' + id);
12-
},
134
getAllProperties: function () {
145
return umbRequestHelper.resourcePromise(
156
$http.get(

src/Umbraco.Forms.Extensions.Crm.Hubspot/Controllers/HubspotController.cs renamed to src/Umbraco.Forms.Integrations.Crm.Hubspot/Controllers/HubspotController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System.Collections.Generic;
22
using System.Threading.Tasks;
3-
using Umbraco.Forms.Extensions.Crm.Hubspot.Models.Responses;
4-
using Umbraco.Forms.Extensions.Crm.Hubspot.Services;
3+
using Umbraco.Forms.Integrations.Crm.Hubspot.Models.Responses;
4+
using Umbraco.Forms.Integrations.Crm.Hubspot.Services;
55
using Umbraco.Web.Editors;
66
using Umbraco.Web.Mvc;
77

8-
namespace Umbraco.Forms.Extensions.Crm.Hubspot.Controllers
8+
namespace Umbraco.Forms.Integrations.Crm.Hubspot.Controllers
99
{
1010
[PluginController("FormsExtensions")]
1111
public class HubspotController : UmbracoAuthorizedJsonController

src/Umbraco.Forms.Extensions.Crm.Hubspot/HubspotComponent.cs renamed to src/Umbraco.Forms.Integrations.Crm.Hubspot/HubspotComponent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
using System.Web.Mvc;
55
using System.Web.Routing;
66
using Umbraco.Core.Composing;
7-
using Umbraco.Forms.Extensions.Crm.Hubspot.Controllers;
7+
using Umbraco.Forms.Integrations.Crm.Hubspot.Controllers;
88
using Umbraco.Web;
99
using Umbraco.Web.JavaScript;
1010

11-
namespace Umbraco.Forms.Extensions.Crm.Hubspot
11+
namespace Umbraco.Forms.Integrations.Crm.Hubspot
1212
{
1313
public class HubspotComponent : IComponent
1414
{

src/Umbraco.Forms.Extensions.Crm.Hubspot/HubspotComposer.cs renamed to src/Umbraco.Forms.Integrations.Crm.Hubspot/HubspotComposer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Umbraco.Core;
22
using Umbraco.Core.Composing;
3-
using Umbraco.Forms.Extensions.Crm.Hubspot.Services;
3+
using Umbraco.Forms.Integrations.Crm.Hubspot.Services;
44

5-
namespace Umbraco.Forms.Extensions.Crm.Hubspot
5+
namespace Umbraco.Forms.Integrations.Crm.Hubspot
66
{
77
public class HubspotComposer : IUserComposer
88
{

src/Umbraco.Forms.Extensions.Crm.Hubspot/HubspotWorkflow.cs renamed to src/Umbraco.Forms.Integrations.Crm.Hubspot/HubspotWorkflow.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
using Umbraco.Forms.Core.Attributes;
77
using Umbraco.Forms.Core.Enums;
88
using Umbraco.Forms.Core.Persistence.Dtos;
9-
using Umbraco.Forms.Extensions.Crm.Hubspot.Models;
10-
using Umbraco.Forms.Extensions.Crm.Hubspot.Services;
9+
using Umbraco.Forms.Integrations.Crm.Hubspot.Models;
10+
using Umbraco.Forms.Integrations.Crm.Hubspot.Services;
1111

12-
namespace Umbraco.Forms.Extensions.Crm.Hubspot
12+
namespace Umbraco.Forms.Integrations.Crm.Hubspot
1313
{
1414
public class HubspotWorkflow : WorkflowType
1515
{

0 commit comments

Comments
 (0)