mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Snake case variable name
This commit is contained in:
parent
931044cd62
commit
c0a6370544
1 changed files with 3 additions and 3 deletions
|
@ -95,10 +95,10 @@ class Backend_api extends EA_Controller {
|
|||
}
|
||||
|
||||
$userId = $this->session->userdata('user_id');
|
||||
$roleSlug = $this->session->userdata('role_slug');
|
||||
$role_slug = $this->session->userdata('role_slug');
|
||||
|
||||
// If the current user is a provider he must only see his own appointments.
|
||||
if ($roleSlug === DB_SLUG_PROVIDER)
|
||||
if ($role_slug === DB_SLUG_PROVIDER)
|
||||
{
|
||||
foreach ($response['appointments'] as $index => $appointment)
|
||||
{
|
||||
|
@ -118,7 +118,7 @@ class Backend_api extends EA_Controller {
|
|||
}
|
||||
|
||||
// If the current user is a secretary he must only see the appointments of his providers.
|
||||
if ($roleSlug === DB_SLUG_SECRETARY)
|
||||
if ($role_slug === DB_SLUG_SECRETARY)
|
||||
{
|
||||
$this->load->model('secretaries_model');
|
||||
$providers = $this->secretaries_model->get_row($userId)['providers'];
|
||||
|
|
Loading…
Reference in a new issue