StandardRB

This commit is contained in:
2024-02-21 21:48:44 +11:00
parent 0a14ae1204
commit 6f663722ab
37 changed files with 43 additions and 41 deletions

View File

@@ -1,7 +1,7 @@
module Main
module Views
module Blogroll
class Opml< Main::View
class Opml < Main::View
include Deps[blogroll_list: "queries.blogroll.index"]
expose :blogroll do |blogroll_result|
@@ -11,7 +11,7 @@ module Main
url: feed["url"],
html_url: feed["htmlUrl"],
icon: feed["iconUrl"],
categories: feed["categories"].map {|cat| cat["label"]}
categories: feed["categories"].map { |cat| cat["label"] }
}
end
end