summaryrefslogtreecommitdiff
path: root/lib/web/controllers/irc_controller.ex
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2022-12-20 02:52:54 +0000
committerJordan Bracco <href@random.sh>2022-12-20 19:29:41 +0100
commitf388033b75789d25a833d29a2759c0a741a61c51 (patch)
tree348749e10220b1af4197303d84203e77515bb8bb /lib/web/controllers/irc_controller.ex
parentSlight README update, refs T77 (diff)
Rename IRC.Membership to Nola.Membership, refs T77
Diffstat (limited to 'lib/web/controllers/irc_controller.ex')
-rw-r--r--lib/web/controllers/irc_controller.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/web/controllers/irc_controller.ex b/lib/web/controllers/irc_controller.ex
index d6114e6..441cbe7 100644
--- a/lib/web/controllers/irc_controller.ex
+++ b/lib/web/controllers/irc_controller.ex
@@ -17,7 +17,7 @@ defmodule NolaWeb.IrcController do
members = cond do
network && channel -> Enum.map(IRC.UserTrack.channel(network, channel), fn(tuple) -> IRC.UserTrack.User.from_tuple(tuple) end)
true ->
- IRC.Membership.of_account(conn.assigns.account)
+ Nola.Membership.of_account(conn.assigns.account)
end
render conn, "index.html", network: network, commands: commands, channel: channel, members: members
end