- API: issue label bulk add, search messages, room WS push, openapi - Frontend: notify page, issue detail AI triage banner, search page, repository settings, preferences, PR components, file browser - Room: DiscordChannelSidebar, RoomPinPanel, RoomMessageActions, RoomThreadPanel, MessageContent, repository-context - Frontend SDK regenerated from openapi.json
9 lines
221 B
Rust
9 lines
221 B
Rust
pub mod service;
|
|
|
|
use actix_web::web;
|
|
|
|
pub fn init_search_routes(cfg: &mut web::ServiceConfig) {
|
|
cfg.route("/search", web::to(service::search));
|
|
cfg.route("/search/messages", web::to(service::search_messages));
|
|
}
|