Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links #535

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/backpex/live_resource.ex
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ defmodule Backpex.LiveResource do
alias Backpex.Resource

@doc """
A list of [resource_actions](resource_actions.html) that may be performed on the given resource.
A list of [resource_actions](Backpex.ResourceAction.html) that may be performed on the given resource.
"""
@callback resource_actions() :: list()

@doc """
A list of [item_actions](item_actions.html) that may be performed on (selected) items.
A list of [item_actions](Backpex.ItemAction.html) that may be performed on (selected) items.
"""
@callback item_actions(default_actions :: list(map())) :: list()

Expand Down Expand Up @@ -83,12 +83,12 @@ defmodule Backpex.LiveResource do
%Phoenix.LiveView.Rendered{}

@doc """
A optional keyword list of [filters](filters.html) to be used on the index view.
A optional keyword list of [filters](Backpex.Filter.html) to be used on the index view.
"""
@callback filters() :: keyword()

@doc """
A optional keyword list of [filters](filters.html) to be used on the index view.
A optional keyword list of [filters](Backpex.Filter.html) to be used on the index view.
"""
@callback filters(assigns :: map()) :: keyword()

Expand Down