File tree 9 files changed +0
-45
lines changed
src/Examples/DatabasePerTenantExample/Controllers
test/JsonApiDotNetCoreTests/IntegrationTests
9 files changed +0
-45
lines changed Original file line number Diff line number Diff line change 3
3
4
4
namespace DatabasePerTenantExample . Controllers ;
5
5
6
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
7
- public partial class EmployeesController
8
- {
9
- }
10
-
11
6
[ DisableRoutingConvention ]
12
7
[ Route ( "api/{tenantName}/employees" ) ]
13
8
partial class EmployeesController
Original file line number Diff line number Diff line change 4
4
5
5
namespace JsonApiDotNetCoreTests . IntegrationTests . ControllerActionResults ;
6
6
7
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
8
- public partial class ToothbrushesController
9
- {
10
- }
11
-
12
7
partial class ToothbrushesController
13
8
{
14
9
internal const int EmptyActionResultId = 11111111 ;
Original file line number Diff line number Diff line change 3
3
4
4
namespace JsonApiDotNetCoreTests . IntegrationTests . CustomRoutes ;
5
5
6
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
7
- public partial class CiviliansController
8
- {
9
- }
10
-
11
6
[ ApiController ]
12
7
[ DisableRoutingConvention ]
13
8
[ Route ( "world-civilians" ) ]
Original file line number Diff line number Diff line change 8
8
9
9
namespace JsonApiDotNetCoreTests . IntegrationTests . CustomRoutes ;
10
10
11
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
12
- public partial class TownsController
13
- {
14
- }
15
-
16
11
[ DisableRoutingConvention ]
17
12
[ Route ( "world-api/civilization/popular/towns" ) ]
18
13
partial class TownsController
Original file line number Diff line number Diff line change 3
3
4
4
namespace JsonApiDotNetCoreTests . IntegrationTests . HostingInIIS ;
5
5
6
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
7
- public partial class PaintingsController
8
- {
9
- }
10
-
11
6
[ DisableRoutingConvention ]
12
7
[ Route ( "custom/path/to/paintings-of-the-world" ) ]
13
8
partial class PaintingsController
Original file line number Diff line number Diff line change 3
3
4
4
namespace JsonApiDotNetCoreTests . IntegrationTests . MultiTenancy ;
5
5
6
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
7
- public partial class WebProductsController
8
- {
9
- }
10
-
11
6
[ DisableRoutingConvention ]
12
7
[ Route ( "{countryCode}/products" ) ]
13
8
partial class WebProductsController
Original file line number Diff line number Diff line change 3
3
4
4
namespace JsonApiDotNetCoreTests . IntegrationTests . MultiTenancy ;
5
5
6
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
7
- public partial class WebShopsController
8
- {
9
- }
10
-
11
6
[ DisableRoutingConvention ]
12
7
[ Route ( "{countryCode}/shops" ) ]
13
8
partial class WebShopsController
Original file line number Diff line number Diff line change 2
2
3
3
namespace JsonApiDotNetCoreTests . IntegrationTests . RestrictedControllers ;
4
4
5
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
6
- public partial class PillowsController
7
- {
8
- }
9
-
10
5
[ DisableQueryString ( "skipCache" ) ]
11
6
partial class PillowsController
12
7
{
Original file line number Diff line number Diff line change 3
3
4
4
namespace JsonApiDotNetCoreTests . IntegrationTests . RestrictedControllers ;
5
5
6
- // Workaround for https://youtrack.jetbrains.com/issue/RSRP-487028
7
- public partial class SofasController
8
- {
9
- }
10
-
11
6
[ DisableQueryString ( JsonApiQueryStringParameters . Sort | JsonApiQueryStringParameters . Page ) ]
12
7
partial class SofasController
13
8
{
You can’t perform that action at this time.
0 commit comments