d9c48370df
* [Unrelated] updated module name for existing liveview module * Updated toggle component and moved MP index table to a liveview * [WIP] reverted MP index table; added source count to MP index * Moved new live table to sources index * Added 'enabled' boolean to sources * Got 'enabled' logic working re: downloading pending media * Updated sources context to do the right thing when a source is updated * Docs and tests * Updated slow indexing to maintain its old schedule if re-enabled * Hooked up the enabled toggle to the sources page * [Unrelated] added direct links to various tabs on the sources table * More tests * Removed unneeded guard in * Removed outdated comment
30 lines
734 B
Elixir
30 lines
734 B
Elixir
defmodule Pinchflat.Profiles.ProfilesQuery do
|
|
@moduledoc """
|
|
Query helpers for the Profiles context.
|
|
|
|
These methods are made to be one-ish liners used
|
|
to compose queries. Each method should strive to do
|
|
_one_ thing. These don't need to be tested as
|
|
they are just building blocks for other functionality
|
|
which, itself, will be tested.
|
|
"""
|
|
import Ecto.Query, warn: false
|
|
|
|
alias Pinchflat.Profiles.MediaProfile
|
|
|
|
# This allows the module to be aliased and query methods to be used
|
|
# all in one go
|
|
# usage: use Pinchflat.Profiles.ProfilesQuery
|
|
defmacro __using__(_opts) do
|
|
quote do
|
|
import Ecto.Query, warn: false
|
|
|
|
alias unquote(__MODULE__)
|
|
end
|
|
end
|
|
|
|
def new do
|
|
MediaProfile
|
|
end
|
|
end
|