This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useState } from 'react' | |
import { AgGridReact } from '@ag-grid-community/react' | |
import { AllCommunityModules } from '@ag-grid-community/all-modules' | |
import { DEFAULT_COLUMN_DEFINITIONS, gridInit } from '../../helpers/agGrid' | |
import { | |
cleanUpQuery, | |
GridFilterService, | |
} from '../../../services/ag-grid/GridFilterService' | |
import PropTypes from 'prop-types' | |
import { useHistory } from 'react-router' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Exceptions; | |
//use Auth; | |
use Exception; | |
use Illuminate\Auth\Access\AuthorizationException; | |
use Illuminate\Auth\AuthenticationException; | |
use Illuminate\Database\Eloquent\ModelNotFoundException; | |
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace RacApi\V1\Authentication; | |
use Zend\Authentication\AuthenticationService; | |
use ZfcRbac\Exception; | |
use ZfcRbac\Identity\IdentityProviderInterface; | |
use Doctrine\ORM\EntityManager; | |
//use User\Entity\User; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Validator; | |
use DoctrineModule\Validator\NoObjectExists as NoObjectExistsValidator; | |
use Zend\Validator\Exception; | |
use Doctrine\Common\Persistence\ObjectRepository; | |
class CustomNoObjectExistsValidator extends NoObjectExistsValidator | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace RacApi\V1\Entity\Oauth; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* OauthAccessToken | |
* | |
* @ORM\Table(name="oauth_access_tokens") | |
* @ORM\Entity() |