* [UPDT]candidate update stage * [FIX]typo in notification - email sent * [UPDT]recruitment updates * [UPDT]onboarding updates * [UPDT]attendance updates * [UPDT]employee updates * [UPDT]updated static files for summernote --------- Co-authored-by: NIKHIL RAVI <nikhil.ravi10@gmail.com>
20 lines
495 B
Python
20 lines
495 B
Python
"""
|
|
apps.py
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class EmployeeConfig(AppConfig):
|
|
"""
|
|
AppConfig for the 'employee' app.
|
|
|
|
This class represents the configuration for the 'employee' app. It provides
|
|
the necessary settings and metadata for the app.
|
|
|
|
Attributes:
|
|
default_auto_field (str): The default auto field to use for model field IDs.
|
|
name (str): The name of the app.
|
|
"""
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "employee"
|