• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

processone / ejabberd / 1296

19 Jan 2026 11:25AM UTC coverage: 33.562% (+0.09%) from 33.468%
1296

push

github

badlop
mod_conversejs: Cosmetic change: sort paths alphabetically

0 of 4 new or added lines in 1 file covered. (0.0%)

11245 existing lines in 174 files now uncovered.

15580 of 46421 relevant lines covered (33.56%)

1074.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

40.0
/src/mod_privacy_opt.erl
1
%% Generated automatically
2
%% DO NOT EDIT: run `make options` instead
3

4
-module(mod_privacy_opt).
5

6
-export([cache_life_time/1]).
7
-export([cache_missed/1]).
8
-export([cache_size/1]).
9
-export([db_type/1]).
10
-export([use_cache/1]).
11

12
-spec cache_life_time(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
13
cache_life_time(Opts) when is_map(Opts) ->
UNCOV
14
    gen_mod:get_opt(cache_life_time, Opts);
8✔
15
cache_life_time(Host) ->
16
    gen_mod:get_module_opt(Host, mod_privacy, cache_life_time).
×
17

18
-spec cache_missed(gen_mod:opts() | global | binary()) -> boolean().
19
cache_missed(Opts) when is_map(Opts) ->
UNCOV
20
    gen_mod:get_opt(cache_missed, Opts);
8✔
21
cache_missed(Host) ->
22
    gen_mod:get_module_opt(Host, mod_privacy, cache_missed).
×
23

24
-spec cache_size(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
25
cache_size(Opts) when is_map(Opts) ->
UNCOV
26
    gen_mod:get_opt(cache_size, Opts);
8✔
27
cache_size(Host) ->
28
    gen_mod:get_module_opt(Host, mod_privacy, cache_size).
×
29

30
-spec db_type(gen_mod:opts() | global | binary()) -> atom().
31
db_type(Opts) when is_map(Opts) ->
32
    gen_mod:get_opt(db_type, Opts);
×
33
db_type(Host) ->
34
    gen_mod:get_module_opt(Host, mod_privacy, db_type).
×
35

36
-spec use_cache(gen_mod:opts() | global | binary()) -> boolean().
37
use_cache(Opts) when is_map(Opts) ->
38
    gen_mod:get_opt(use_cache, Opts);
×
39
use_cache(Host) ->
UNCOV
40
    gen_mod:get_module_opt(Host, mod_privacy, use_cache).
104,296✔
41

STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc