diff options
author | Vitaly Takmazov | 2022-12-22 03:46:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2022-12-22 04:18:27 +0300 |
commit | d4df81c28908c593c2b59f2596e4e380492b32d0 (patch) | |
tree | 046e58ccb5075dcbba83a68d031d57a00d6b775a /src/main/java | |
parent | 15fbc16291e0a15cf05e9b4477eaf8709833d3a0 (diff) |
www: Mastodon-compatible `/share` endpoint
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/juick/www/controllers/Compat.java | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/main/java/com/juick/www/controllers/Compat.java b/src/main/java/com/juick/www/controllers/Compat.java new file mode 100644 index 00000000..ebf584dc --- /dev/null +++ b/src/main/java/com/juick/www/controllers/Compat.java @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2008-2022, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +package com.juick.www.controllers; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.servlet.mvc.support.RedirectAttributes; +import org.springframework.web.servlet.view.RedirectView; + +@Controller +public class Compat { + @GetMapping("/share") + public RedirectView share(@RequestParam String text, RedirectAttributes attributes) { + attributes.addAttribute("body", text); + return new RedirectView("/post"); + } +} |