Documentation ¶
Index ¶
- Constants
- func AddCompany(c *gin.Context)
- func AddCompanyBranch(c *gin.Context)
- func CommentBLog(c *gin.Context)
- func CommentBootcamp(c *gin.Context)
- func CreateApptype(c *gin.Context)
- func CreateApptypeTable(db *pg.DB) error
- func CreateBlog(c *gin.Context)
- func CreateBlogTable(db *pg.DB) error
- func CreateBootcamp(c *gin.Context)
- func CreateBootcampTable(db *pg.DB) error
- func CreateCompanyBranchTable(db *pg.DB) error
- func CreateCompanyTable(db *pg.DB) error
- func CreateDatabase(c *gin.Context)
- func CreateFramework(c *gin.Context)
- func CreateFrameworkTable(db *pg.DB) error
- func CreateLanguage(c *gin.Context)
- func CreateLanguageTable(db *pg.DB) error
- func CreateLibrary(c *gin.Context)
- func CreateLibraryTable(db *pg.DB) error
- func CreateOther(c *gin.Context)
- func CreateOtherTable(db *pg.DB) error
- func CreatePlatform(c *gin.Context)
- func CreatePlatformTable(db *pg.DB) error
- func CreateProfile(c *gin.Context)
- func CreateProfileTable(db *pg.DB) error
- func CreateTag(c *gin.Context)
- func CreateTagTable(db *pg.DB) error
- func CreateUserTable(db *pg.DB) error
- func DeleteApptype(c *gin.Context)
- func DeleteBlog(c *gin.Context)
- func DeleteBootcamp(c *gin.Context)
- func DeleteCompany(c *gin.Context)
- func DeleteCompanyBranch(c *gin.Context)
- func DeleteDatabase(c *gin.Context)
- func DeleteFramework(c *gin.Context)
- func DeleteLanguage(c *gin.Context)
- func DeleteLibrary(c *gin.Context)
- func DeleteOther(c *gin.Context)
- func DeletePlatform(c *gin.Context)
- func DeleteTag(c *gin.Context)
- func EnrollBootcamp(c *gin.Context)
- func GetApptype(c *gin.Context)
- func GetApptypeList(c *gin.Context)
- func GetBlog(c *gin.Context)
- func GetBlogList(c *gin.Context)
- func GetBootcamp(c *gin.Context)
- func GetBootcampList(c *gin.Context)
- func GetBranch(c *gin.Context)
- func GetByID(c *gin.Context)
- func GetCachedProfile(c *gin.Context)
- func GetCachedUser(c *gin.Context)
- func GetCompany(c *gin.Context)
- func GetCompanyBranches(c *gin.Context)
- func GetCompanyList(c *gin.Context)
- func GetDatabase(c *gin.Context)
- func GetDatabaseList(c *gin.Context)
- func GetFramework(c *gin.Context)
- func GetFrameworkList(c *gin.Context)
- func GetKeys(c *gin.Context)
- func GetLanguage(c *gin.Context)
- func GetLanguageList(c *gin.Context)
- func GetLibrary(c *gin.Context)
- func GetLibraryList(c *gin.Context)
- func GetOther(c *gin.Context)
- func GetOtherList(c *gin.Context)
- func GetPlatform(c *gin.Context)
- func GetPlatformList(c *gin.Context)
- func GetProfileByUser(c *gin.Context)
- func GetProfileList(c *gin.Context)
- func GetTag(c *gin.Context)
- func GetTagList(c *gin.Context)
- func GetUser(c *gin.Context)
- func GetUserList(c *gin.Context)
- func InitiateDB(db *pg.DB)
- func InitiateRedis(client *redis.Client)
- func LikeBlog(c *gin.Context)
- func LikeBootcamp(c *gin.Context)
- func RefreshToken(c *gin.Context)
- func RemoveApptypeTable(db *pg.DB) error
- func RemoveBlogTable(db *pg.DB) error
- func RemoveBootcampTable(db *pg.DB) error
- func RemoveCompanyBranchTable(db *pg.DB) error
- func RemoveCompanyTable(db *pg.DB) error
- func RemoveEnrollmentByIndex(s []models.Enroller, index int) []models.Enroller
- func RemoveFrameworkTable(db *pg.DB) error
- func RemoveLanguageTable(db *pg.DB) error
- func RemoveLibraryTable(db *pg.DB) error
- func RemoveLikeByIndex(s []models.Like, index int) []models.Like
- func RemoveOtherTable(db *pg.DB) error
- func RemovePlatformTable(db *pg.DB) error
- func RemoveProfileTable(db *pg.DB) error
- func RemoveTagTable(db *pg.DB) error
- func RemoveUserTable(db *pg.DB) error
- func ResetApptypeCache(c *gin.Context)
- func ResetBlogCache(c *gin.Context)
- func ResetBootcampCache(c *gin.Context)
- func ResetBranchCache(c *gin.Context)
- func ResetCompanyCache(c *gin.Context)
- func ResetDatabaseCache(c *gin.Context)
- func ResetFrameworkCache(c *gin.Context)
- func ResetLanguageCache(c *gin.Context)
- func ResetLibraryCache(c *gin.Context)
- func ResetOtherCache(c *gin.Context)
- func ResetPlatformCache(c *gin.Context)
- func ResetProfileCache(c *gin.Context)
- func ResetTagCache(c *gin.Context)
- func ResetUserCache(c *gin.Context)
- func SetBlogPublic(c *gin.Context)
- func SetBootcampAvailability(c *gin.Context)
- func SetKeys(c *gin.Context)
- func TokenVerifyMiddleWare() gin.HandlerFunc
- func UpdateApptype(c *gin.Context)
- func UpdateBlog(c *gin.Context)
- func UpdateBootcamp(c *gin.Context)
- func UpdateCompany(c *gin.Context)
- func UpdateCompanyBranch(c *gin.Context)
- func UpdateDatabase(c *gin.Context)
- func UpdateFramework(c *gin.Context)
- func UpdateLanguage(c *gin.Context)
- func UpdateLibrary(c *gin.Context)
- func UpdateOther(c *gin.Context)
- func UpdatePlatform(c *gin.Context)
- func UpdateProfile(c *gin.Context)
- func UpdateTag(c *gin.Context)
- func UserSignin(c *gin.Context)
- func UserSignup(c *gin.Context)
Constants ¶
View Source
const (
DefaultTimeout = 86400 * time.Second
)
Variables ¶
This section is empty.
Functions ¶
func AddCompany ¶
func AddCompanyBranch ¶
func CommentBLog ¶
func CommentBootcamp ¶
func CreateApptype ¶
func CreateApptypeTable ¶
func CreateApptypeTable(db *pg.DB) error
func CreateBlog ¶
func CreateBlogTable ¶
func CreateBlogTable(db *pg.DB) error
func CreateBootcamp ¶
func CreateBootcampTable ¶
func CreateBootcampTable(db *pg.DB) error
func CreateCompanyBranchTable ¶
func CreateCompanyBranchTable(db *pg.DB) error
func CreateCompanyTable ¶
func CreateCompanyTable(db *pg.DB) error
func CreateDatabase ¶
func CreateFramework ¶
func CreateFrameworkTable ¶
func CreateFrameworkTable(db *pg.DB) error
func CreateLanguage ¶
func CreateLanguageTable ¶
func CreateLanguageTable(db *pg.DB) error
func CreateLibrary ¶
func CreateLibraryTable ¶
func CreateLibraryTable(db *pg.DB) error
func CreateOther ¶
func CreateOtherTable ¶
func CreateOtherTable(db *pg.DB) error
func CreatePlatform ¶
func CreatePlatformTable ¶
func CreatePlatformTable(db *pg.DB) error
func CreateProfile ¶
func CreateProfileTable ¶
func CreateProfileTable(db *pg.DB) error
func CreateTagTable ¶
func CreateTagTable(db *pg.DB) error
func CreateUserTable ¶
func CreateUserTable(db *pg.DB) error
func DeleteApptype ¶
func DeleteBlog ¶
func DeleteBootcamp ¶
func DeleteCompany ¶
func DeleteCompanyBranch ¶
func DeleteDatabase ¶
func DeleteFramework ¶
func DeleteLanguage ¶
func DeleteLibrary ¶
func DeleteOther ¶
func DeletePlatform ¶
func EnrollBootcamp ¶
func GetApptype ¶
func GetApptypeList ¶
func GetBlogList ¶
func GetBootcamp ¶
func GetBootcampList ¶
func GetCachedProfile ¶
func GetCachedUser ¶
func GetCompany ¶
func GetCompanyBranches ¶
func GetCompanyList ¶
func GetDatabase ¶
func GetDatabaseList ¶
func GetFramework ¶
func GetFrameworkList ¶
func GetLanguage ¶
func GetLanguageList ¶
func GetLibrary ¶
func GetLibraryList ¶
func GetOtherList ¶
func GetPlatform ¶
func GetPlatformList ¶
func GetProfileByUser ¶
func GetProfileList ¶
func GetTagList ¶
func GetUserList ¶
func InitiateDB ¶
func InitiateDB(db *pg.DB)
func InitiateRedis ¶
func LikeBootcamp ¶
func RefreshToken ¶
func RemoveApptypeTable ¶
func RemoveApptypeTable(db *pg.DB) error
func RemoveBlogTable ¶
func RemoveBlogTable(db *pg.DB) error
func RemoveBootcampTable ¶
func RemoveBootcampTable(db *pg.DB) error
func RemoveCompanyBranchTable ¶
func RemoveCompanyBranchTable(db *pg.DB) error
func RemoveCompanyTable ¶
func RemoveCompanyTable(db *pg.DB) error
func RemoveEnrollmentByIndex ¶
func RemoveFrameworkTable ¶
func RemoveFrameworkTable(db *pg.DB) error
func RemoveLanguageTable ¶
func RemoveLanguageTable(db *pg.DB) error
func RemoveLibraryTable ¶
func RemoveLibraryTable(db *pg.DB) error
func RemoveOtherTable ¶
func RemoveOtherTable(db *pg.DB) error
func RemovePlatformTable ¶
func RemovePlatformTable(db *pg.DB) error
func RemoveProfileTable ¶
func RemoveProfileTable(db *pg.DB) error
func RemoveTagTable ¶
func RemoveTagTable(db *pg.DB) error
func RemoveUserTable ¶
func RemoveUserTable(db *pg.DB) error
func ResetApptypeCache ¶
func ResetBlogCache ¶
func ResetBootcampCache ¶
func ResetBranchCache ¶
func ResetCompanyCache ¶
func ResetDatabaseCache ¶
func ResetFrameworkCache ¶
func ResetLanguageCache ¶
func ResetLibraryCache ¶
func ResetOtherCache ¶
func ResetPlatformCache ¶
func ResetProfileCache ¶
func ResetTagCache ¶
func ResetUserCache ¶
func SetBlogPublic ¶
func SetBootcampAvailability ¶
func TokenVerifyMiddleWare ¶
func TokenVerifyMiddleWare() gin.HandlerFunc
func UpdateApptype ¶
func UpdateBlog ¶
func UpdateBootcamp ¶
func UpdateCompany ¶
func UpdateCompanyBranch ¶
func UpdateDatabase ¶
func UpdateFramework ¶
func UpdateLanguage ¶
func UpdateLibrary ¶
func UpdateOther ¶
func UpdatePlatform ¶
func UpdateProfile ¶
func UserSignin ¶
func UserSignup ¶
Types ¶
This section is empty.
Source Files ¶
- apptypeControllers.go
- blogControllers.go
- bootcampControllers.go
- branchControllers.go
- cacheControllers.go
- companyControllers.go
- databaseControllers.go
- frameworkControllers.go
- languageControllers.go
- libraryControllers.go
- mainControllers.go
- otherControllers.go
- platformControllers.go
- profileControllers.go
- tagControllers.go
- userControllers.go
Click to show internal directories.
Click to hide internal directories.