def create
        if check_current_isAdmin?
            category = Category.new(categories_params)
            if category.save
                render json: { status: 'SUCCESS', message: 'La catégorie a été ajoutée', data: category }, status: :created