remove city and prov from user address
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-23 11:47:30 +03:30
parent 7dfd42bd5b
commit 0036e9e97f
10 changed files with 16 additions and 47 deletions
-10
View File
@@ -2,8 +2,6 @@ export interface UserAddressData {
userPhone: string;
title: string;
address: string;
city: string;
province?: string;
postalCode?: string;
latitude: number;
longitude: number;
@@ -16,8 +14,6 @@ export const userAddressesData: UserAddressData[] = [
userPhone: '09362532122',
title: 'خانه',
address: 'خیابان ولیعصر، پلاک 123',
city: 'تهران',
province: 'تهران',
postalCode: '1234567890',
latitude: 35.6892,
longitude: 51.389,
@@ -28,8 +24,6 @@ export const userAddressesData: UserAddressData[] = [
userPhone: '09185290775',
title: 'خانه',
address: 'خیابان انقلاب، پلاک 456',
city: 'تهران',
province: 'تهران',
postalCode: '1234567891',
latitude: 35.69,
longitude: 51.39,
@@ -40,8 +34,6 @@ export const userAddressesData: UserAddressData[] = [
userPhone: '09129283395',
title: 'خانه',
address: 'خیابان آزادی، پلاک 789',
city: 'تهران',
province: 'تهران',
postalCode: '1234567892',
latitude: 35.691,
longitude: 51.391,
@@ -52,8 +44,6 @@ export const userAddressesData: UserAddressData[] = [
userPhone: '09184317567',
title: 'خانه',
address: 'خیابان جمهوری، پلاک 321',
city: 'تهران',
province: 'تهران',
postalCode: '1234567893',
latitude: 35.692,
longitude: 51.392,
-2
View File
@@ -60,8 +60,6 @@ export class UsersSeeder {
user,
title: addressData.title,
address: addressData.address,
city: addressData.city,
province: addressData.province,
postalCode: addressData.postalCode,
latitude: addressData.latitude,
longitude: addressData.longitude,