add category insert #14
Loading…
Reference in New Issue
No description provided.
Delete Branch "add_categories_api"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +32,4 @@
query := `INSERT INTO categories (name, user_id, favorite, monthly_limit) VALUES (@name, @user_id, @favorite, @monthly_limit)`
args := pgx.NamedArgs{
"name": category.Name,
"user_id": 1,
user_id 1 у нас типа тестовый будет?
Пока авторизации нет
@ -0,0 +29,4 @@
}
func (s *CategoryService) AddCategory(ctx context.Context, category *CategoryEntity) (*CategoryEntity, error) {
query := `INSERT INTO categories (name, user_id, favorite, monthly_limit) VALUES (@name, @user_id, @favorite, @monthly_limit)`
мб проверить category на nil?
вдруг потом поменяется логика выше, а у нас тут не проверяется - нехорошо
Нет же