A feed generator that allows Bluesky bookmarks via DMs

rename app (#9)

authored by willdot.net and committed by GitHub 0612cf9b ef0ce242

Changed files
+2 -2
frontend
+1 -1
frontend/base.templ
··· 4 4 <!DOCTYPE html> 5 5 <html lang="en"> 6 6 <head> 7 - <title>BSFeeder</title> 7 + <title>Bsky-bookmark</title> 8 8 <link rel="icon" type="image/x-icon" href="/public/favicon.ico"/> 9 9 <meta charset="UTF-8"/> 10 10 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+1 -1
oauth_handlers.go
··· 30 30 func (s *Server) serveClientMetadata(w http.ResponseWriter, r *http.Request) { 31 31 metadata := map[string]any{ 32 32 "client_id": fmt.Sprintf("https://%s/client-metadata.json", s.feedHost), 33 - "client_name": "BS Feeder", 33 + "client_name": "Bsky-bookmark", 34 34 "client_uri": fmt.Sprintf("https://%s", s.feedHost), 35 35 "redirect_uris": []string{fmt.Sprintf("https://%s/oauth-callback", s.feedHost)}, 36 36 "grant_types": []string{"authorization_code", "refresh_token"},