diff options
author | Jordan Bracco <href@random.sh> | 2022-12-20 02:52:54 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | f388033b75789d25a833d29a2759c0a741a61c51 (patch) | |
tree | 348749e10220b1af4197303d84203e77515bb8bb /lib/web/controllers/irc_controller.ex | |
parent | Slight 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.ex | 2 |
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 |