本文整理匯總了Golang中github.com/messagedb/messagedb/services/httpd/helpers.JSONResponseNotImplemented函數的典型用法代碼示例。如果您正苦於以下問題:Golang JSONResponseNotImplemented函數的具體用法?Golang JSONResponseNotImplemented怎麽用?Golang JSONResponseNotImplemented使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了JSONResponseNotImplemented函數的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: CreateConversation
// CreateConversation creates a new conversation in the Organization
//
// POST /orgs/:org/conversations
//
func (c *OrganizationsController) CreateConversation(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例2: ListPublicConversations
// ListPublicConversations returns all conversations that are marked as public in the Organization.
//
// GET /orgs/:org/public_conversations
//
func (c *OrganizationsController) ListPublicConversations(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例3: DeleteDevice
// DeleteDevice removes a client device from the authenticated users' account
//
// DELETE /devices/:id
//
func (c *DevicesController) DeleteDevice(ctx *gin.Context) {
_ = ctx.MustGet("device")
helpers.JSONResponseNotImplemented(ctx)
}
示例4: DeleteMessage
// DeleteMessage deletes a message from a Conversation
//
// DELETE /conversations/:conversation_id/messages/:message_id
//
func (c *MessagesController) DeleteMessage(ctx *gin.Context) {
_ = ctx.MustGet("conversation")
helpers.JSONResponseNotImplemented(ctx)
}
示例5: RemoveIntegration
// RemoveIntegration removes a conversation's integration
//
// DELETE /conversations/:id/integrations/:integration_name
//
func (c *ConversationsController) RemoveIntegration(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例6: AddDevice
// AddDevice registers a new client device to the authenticated user
//
// POST /devices
//
func (c *DevicesController) AddDevice(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例7: AddPulse
// AddPulse pulses the current user in the conversation so we can track activity
//
// POST /conversations/:id/pulses
//
func (c *ConversationsController) AddPulse(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例8: RemoveParticipant
// RemoveParticipant removes user as a participant from this conversation
//
// DELETE /conversations/:id/participants/:username
//
func (c *ConversationsController) RemoveParticipant(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例9: ListSnippets
// ListSnippets lists all conversation snippets
//
// GET /conversations/:id/snippets
//
func (c *ConversationsController) ListSnippets(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例10: DeleteConversation
// DeleteConversation method deletes permanently a specificconversation
//
// DELETE /conversations/:id
//
func (c *ConversationsController) DeleteConversation(ctx *gin.Context) {
helpers.JSONResponseNotImplemented(ctx)
}
示例11: ListMyConversations
// ListMyConversations lists the conversations that the authenticated user participates in
//
// GET /user/conversations
//
func (c *UsersController) ListMyConversations(ctx *gin.Context) {
// TODO: implement this
helpers.JSONResponseNotImplemented(ctx)
}