config of logged routes

This commit is contained in:
tykayn 2019-07-04 14:07:49 +02:00
parent 8e3ba4ed5f
commit 97717179cf
6 changed files with 391 additions and 391 deletions

0
LICENSE Normal file → Executable file
View File

View File

@ -1,4 +1,3 @@
fos_user_profile:
resource: "@FOSUserBundle/Resources/config/routing/profile.xml"
prefix: /profile
@ -39,19 +38,19 @@ app_sell_record:
type: annotation
# async calls
get_my_products:
path: /get-my-products
path: /logged/get-my-products
defaults: { _controller: AppBundle:Default:getMyProducts }
get_my_expenses:
path: /get-my-expenses
path: /logged/get-my-expenses
defaults: { _controller: AppBundle:Default:getMyExpenses }
save_my_expenses:
path: /save-my-expenses
path: /logged/save-my-expenses
defaults: { _controller: AppBundle:Default:saveMyExpenses }
add_selling:
path: /add-selling
path: /logged/add-selling
defaults: { _controller: AppBundle:Default:addSelling }
fos_user:

View File

@ -34,6 +34,7 @@ security:
access_control:
- { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/dashboard$, role: IS_AUTHENTICATED_REMEMBERED }
- { path: ^/logged$, role: IS_AUTHENTICATED_REMEMBERED }
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/admin/, role: ROLE_ADMIN }

View File

@ -119,7 +119,7 @@ angular
// http related calls
$scope.fetchProductsFromDB = function () {
console.log('fetch products...');
$http.get('get-my-products').then((rep) => {
$http.get('logged/get-my-products').then((rep) => {
console.log('ok', rep);
customCategories = [];

0
web/config.php Normal file → Executable file
View File