forked from epochtalk/epochtalk_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.iex.exs
49 lines (46 loc) · 786 Bytes
/
.iex.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
IEx.configure(inspect: [charlists: :as_lists])
IEx.configure(inspect: [limit: :infinity])
alias EpochtalkServer.Repo
alias EpochtalkServer.Models.{
AutoModeration,
Ban,
BannedAddress,
Board,
BoardBan,
BoardMapping,
BoardModerator,
Category,
Configuration,
Invitation,
Mention,
MentionIgnored,
MetadataBoard,
MetadataThread,
MetricRankMap,
Notification,
Permission,
Post,
PostDraft,
Poll,
PollAnswer,
PollResponse,
Preference,
Profile,
Rank,
Role,
RolePermission,
RoleUser,
Thread,
ThreadSubscription,
Trust,
TrustBoard,
TrustFeedback,
TrustMaxDepth,
User,
UserActivity,
UserIgnored,
UserThreadView,
WatchBoard,
WatchThread
}
reload = fn -> r(Enum.map(__ENV__.aliases, fn {_, module} -> module end)) end