Skip to content

Commit 8a9f9b9

Browse files
committed
Renamed plugin Api.WebApi > SmartStore.WebApi
1 parent 1b356bf commit 8a9f9b9

65 files changed

Lines changed: 104 additions & 173 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
File renamed without changes.
File renamed without changes.

src/Plugins/Api.WebApi/Content/smartstore.web.api.css renamed to src/Plugins/SmartStore.WebApi/Content/smartstore.web.api.css

File renamed without changes.

src/Plugins/Api.WebApi/Controllers/Api/HomeController.cs renamed to src/Plugins/SmartStore.WebApi/Controllers/Api/HomeController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using SmartStore.Web.Framework.WebApi.Security;
22
using System.Web.Http;
33

4-
namespace SmartStore.Plugin.Api.WebApi.Controllers.Api
4+
namespace SmartStore.WebApi.Controllers.Api
55
{
66
[WebApiAuthenticate]
77
public class HomeController : ApiController

src/Plugins/Api.WebApi/Controllers/Api/PaymentsController.cs renamed to src/Plugins/SmartStore.WebApi/Controllers/Api/PaymentsController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Web.Http;
88
using System;
99

10-
namespace SmartStore.Plugin.Api.WebApi.Controllers.Api
10+
namespace SmartStore.WebApi.Controllers.Api
1111
{
1212
[WebApiAuthenticate(Permission = "ManagePaymentMethods")]
1313
public class PaymentsController : ApiController

src/Plugins/Api.WebApi/Controllers/OData/AddressesController.cs renamed to src/Plugins/SmartStore.WebApi/Controllers/OData/AddressesController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using SmartStore.Web.Framework.WebApi.OData;
1313
using SmartStore.Web.Framework.WebApi.Security;
1414

15-
namespace SmartStore.Plugin.Api.WebApi.Controllers.OData
15+
namespace SmartStore.WebApi.Controllers.OData
1616
{
1717
[WebApiAuthenticate(Permission = "ManageCustomers")]
1818
public class AddressesController : WebApiEntityController<Address, IAddressService>

src/Plugins/Api.WebApi/Controllers/OData/CategoriesController.cs renamed to src/Plugins/SmartStore.WebApi/Controllers/OData/CategoriesController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using SmartStore.Web.Framework.WebApi.OData;
1111
using SmartStore.Web.Framework.WebApi.Security;
1212

13-
namespace SmartStore.Plugin.Api.WebApi.Controllers.OData
13+
namespace SmartStore.WebApi.Controllers.OData
1414
{
1515
[WebApiAuthenticate(Permission = "ManageCatalog")]
1616
public class CategoriesController : WebApiEntityController<Category, ICategoryService>

src/Plugins/Api.WebApi/Controllers/OData/CountriesController.cs renamed to src/Plugins/SmartStore.WebApi/Controllers/OData/CountriesController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Linq;
88
using System.Web.Http;
99

10-
namespace SmartStore.Plugin.Api.WebApi.Controllers.OData
10+
namespace SmartStore.WebApi.Controllers.OData
1111
{
1212
[WebApiAuthenticate(Permission = "ManageCountries")]
1313
public class CountriesController : WebApiEntityController<Country, ICountryService>

src/Plugins/Api.WebApi/Controllers/OData/CurrenciesController.cs renamed to src/Plugins/SmartStore.WebApi/Controllers/OData/CurrenciesController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using SmartStore.Web.Framework.WebApi.OData;
66
using SmartStore.Web.Framework.WebApi.Security;
77

8-
namespace SmartStore.Plugin.Api.WebApi.Controllers.OData
8+
namespace SmartStore.WebApi.Controllers.OData
99
{
1010
[WebApiAuthenticate(Permission = "ManageCurrencies")]
1111
public class CurrenciesController : WebApiEntityController<Currency, ICurrencyService>

src/Plugins/Api.WebApi/Controllers/OData/CustomersController.cs renamed to src/Plugins/SmartStore.WebApi/Controllers/OData/CustomersController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Linq;
1010
using System.Web.Http;
1111

12-
namespace SmartStore.Plugin.Api.WebApi.Controllers.OData
12+
namespace SmartStore.WebApi.Controllers.OData
1313
{
1414
[WebApiAuthenticate(Permission = "ManageCustomers")]
1515
public class CustomersController : WebApiEntityController<Customer, ICustomerService>

0 commit comments

Comments
 (0)