2022-06-19 00:25:12 -05:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-06-19 00:25:12 -05:00
|
|
|
|
|
|
|
|
package activitypub
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
|
2024-02-27 15:12:22 +08:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-06-19 00:25:12 -05:00
|
|
|
)
|
|
|
|
|
|
2026-03-01 20:59:49 +08:00
|
|
|
func NotImplemented(ctx *context.APIContext) {
|
|
|
|
|
http.Error(ctx.Resp, "Not implemented", http.StatusNotImplemented)
|
2022-06-19 00:25:12 -05:00
|
|
|
}
|