File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 165
165
(def routes
166
166
[[" /" {:name :clojurians-log.routes/index
167
167
:get index-route}]
168
+ [" /_/_/users/{user-id}" {:name :clojurians-log.routes/user-profile-route
169
+ :get user-profile-route}]
168
170
[" /x/x/x/about" {:name :clojurians-log.routes/about
169
171
:get about-route}]
170
172
[" /x/x/x/sitemap" {:name :clojurians-log.routes/sitemap
175
177
:get channel-history-route}]
176
178
[" /{channel}/{date}" {:name :clojurians-log.routes/channel-date
177
179
:get log-route}]
178
- [" /{channel}/{date}/{ts}" {:name :clojurians-log.routes/message ,
179
- :get log-route}]
180
- [" /_/stats/{from-date}/{to-date}" {:name :clojurians-log.routes/message-stats :get message-stats-route}]])
180
+ [" /{channel}/{date}/{ts}" {:name :clojurians-log.routes/message :get log-route}]
181
+ [" /_/stats/{from-date}/{to-date}" {:name :clojurians-log.routes/message-stats
182
+ :get message-stats-route}]
183
+
184
+ {:conflicts nil }
185
+ ]
186
+ )
Original file line number Diff line number Diff line change 188
188
{:id (cl.tu/format-inst-id inst) :class (when (thread-child? message) " thread-msg" )}
189
189
[:a.message_profile-pic {:href (str slack-instance " /users/x/x/" slack-id) :style (str " background-image: url(" image-48 " );" )}]
190
190
; ;[:a.message_username {:href (str slack-instance "/team/" slack-id)}
191
- [:a.message_username {:href (str " /users/x/x /" slack-id)}
191
+ [:a.message_username {:href (str " /_/_/users /" slack-id)}
192
192
(some #(when-not (str/blank? %) %) [display-name real-name name])]
193
193
[:span.message_timestamp [:a {:rel " nofollow"
194
194
:href (path-for context
You can’t perform that action at this time.
0 commit comments