Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在尝试在 Teamcity 主页顶部的 Projects/My Changes/Agents/Build Queue 区域旁边添加一个新选项卡。
有没有办法用当前的 API 做到这一点?
这不是 OpenAPI 的一部分。但您可以尝试以下 Javascript 代码:
topNavPane.addTab("customTab", { caption: "Tab title", url: "<c:url value="/your_controller.html"/>" });
显然,您必须编写 your_controller 的实现。在您的 JSP 视图中,您可能想要使用 page.tag,它是 TeamCity 页面的通用基础。