Skip to content

Commit

Permalink
fix: fix broken links (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
Selflocking authored Aug 8, 2023
1 parent 20a3a8c commit 3856a8b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion controllers/room_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func init() {
}

func (c *ApiController) WebhookRoom() {
// https://marketplace.zoom.us/docs/guides/build/webhook-only-app/
// https://developers.zoom.us/docs/api/rest/webhook-only-app/
var event MeetingEvent
err := json.Unmarshal(c.Ctx.Input.RequestBody, &event)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func main() {
}))

// Cors Post method issue
// https://github.com/astaxie/beego/issues/1037
// https://github.com/beego/beego/issues/1037
beego.InsertFilter("*", beego.BeforeRouter, func(ctx *context.Context) {
if ctx.Input.Method() == "OPTIONS" {
ctx.WriteString("ok")
Expand Down
2 changes: 1 addition & 1 deletion web/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ class App extends Component {

renderFooter() {
// How to keep your footer where it belongs ?
// https://www.freecodecamp.org/neyarnws/how-to-keep-your-footer-where-it-belongs-59c6aa05c59c/
// https://www.freecodecamp.org/news/how-to-keep-your-footer-where-it-belongs-59c6aa05c59c/

return (
<Footer id="footer" style={
Expand Down
2 changes: 1 addition & 1 deletion web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ code {
background: #ffccc7;
}

/*http://react-china.org/t/topic/33846/3*/
/* http://react-china.org/t/topic/33846/3 */
.ant-table-header {
scrollbar-color:transparent transparent
}
Expand Down
2 changes: 1 addition & 1 deletion web/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

// create-react-app + IE9
// https://www.cnblogs.com/xuexia/p/12092768.html
// https://www.cnblogs.com/yeduweichengzhaoyu/p/12092768.html
// react-app-polyfill
// https://www.npmjs.com/package/react-app-polyfill
import "react-app-polyfill/ie9";
Expand Down

0 comments on commit 3856a8b

Please sign in to comment.