Documentation ¶
Index ¶
- func CreateProfile(username string, fullName string, email string, password string, ...) (insertedID interface{})
- func DeleteProfile(username string, db *mongo.Database, input string)
- func InsertOneDoc(db *mongo.Database, collection string, doc interface{}) (insertedID interface{})
- func InsertProfile(pendidikan string, username string, bio string, checkin string, ...) (InsertID interface{})
- func UpdateProfilePassword(username string, newPassword string, input string, db *mongo.Database)
- type Keahlian
- type ListData
- type Pendidikan
- type PengalamanKerja
- type Profil
- type Profile
- type User
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateProfile ¶
func InsertOneDoc ¶
func InsertProfile ¶
Types ¶
type Keahlian ¶
type Keahlian struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` UserID primitive.ObjectID `bson:"user_id,omitempty" json:"user_id,omitempty"` NamaKeahlian string `bson:"nama_keahlian,omitempty" json:"nama_keahlian,omitempty"` Tingkat int `bson:"tingkat,omitempty" json:"tingkat,omitempty"` }
type Pendidikan ¶
type Pendidikan struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` UserID primitive.ObjectID `bson:"user_id,omitempty" json:"user_id,omitempty"` NamaInstitusi string `bson:"nama_institusi,omitempty" json:"nama_institusi,omitempty"` Jurusan string `bson:"jurusan,omitempty" json:"jurusan,omitempty"` TanggalMulai string `bson:"tanggal_mulai,omitempty" json:"tanggal_mulai,omitempty"` TanggalSelesai string `bson:"tanggal_selesai,omitempty" json:"tanggal_selesai,omitempty"` }
type PengalamanKerja ¶
type PengalamanKerja struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` UserID primitive.ObjectID `bson:"user_id,omitempty" json:"user_id,omitempty"` NamaPerus string `bson:"nama_perusahaan,omitempty" json:"nama_perusahaan,omitempty"` Posisi string `bson:"posisi,omitempty" json:"posisi,omitempty"` TanggalMulai string `bson:"tanggal_mulai,omitempty" json:"tanggal_mulai,omitempty"` TanggalSelesai string `bson:"tanggal_selesai,omitempty" json:"tanggal_selesai,omitempty"` }
type Profil ¶
type Profil struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` UserID primitive.ObjectID `bson:"user_id,omitempty" json:"user_id,omitempty"` Gambar string `bson:"gambar,omitempty" json:"gambar,omitempty"` Bio string `bson:"bio,omitempty" json:"bio,omitempty"` Alamat string `bson:"alamat,omitempty" json:"alamat,omitempty"` Pekerjaan string `bson:"pekerjaan,omitempty" json:"pekerjaan,omitempty"` }
Click to show internal directories.
Click to hide internal directories.