home / github / issue_comments

Menu
  • GraphQL API

issue_comments: 1500608101

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/datasette/issues/2054#issuecomment-1500608101 https://api.github.com/repos/simonw/datasette/issues/2054 1500608101 IC_kwDOBm6k_c5ZcXZl 9599 2023-04-07T20:14:38Z 2023-04-07T20:14:38Z OWNER Ooh that one's really interesting - very different from the others: ```ruby # app.rb require "roda" class App < Roda route do |r| r.root do "Home page" end r.on "pages" do r.get ":slug" do |slug| "Page: #{slug}" end end r.on "news" do r.get ":yyyy/:mm/:dd" do |yyyy, mm, dd| "News for #{yyyy}/#{mm}/#{dd}" end end end end # config.ru require_relative "app" run App.freeze.app ``` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} 1657861026  
Powered by Datasette · Queries took 1.024ms