fix credo warning for is_owner?
This commit is contained in:
		| @@ -33,7 +33,7 @@ | ||||
|     > | ||||
|       <:actions :let={context}> | ||||
|         <.link | ||||
|           :if={Contexts.is_owner?(context, @current_user)} | ||||
|           :if={Contexts.owner?(context, @current_user)} | ||||
|           patch={~p"/contexts/#{context}/edit"} | ||||
|           aria-label={dgettext("actions", "edit %{context_slug}", context_slug: context.slug)} | ||||
|         > | ||||
|   | ||||
| @@ -17,7 +17,7 @@ | ||||
|  | ||||
|   <div class="self-end flex space-x-4"> | ||||
|     <.link | ||||
|       :if={Contexts.is_owner?(@context, @current_user)} | ||||
|       :if={Contexts.owner?(@context, @current_user)} | ||||
|       class="btn btn-primary" | ||||
|       patch={~p"/context/#{@context}/edit"} | ||||
|     > | ||||
|   | ||||
| @@ -33,7 +33,7 @@ | ||||
|     > | ||||
|       <:actions :let={note}> | ||||
|         <.link | ||||
|           :if={Notes.is_owner?(note, @current_user)} | ||||
|           :if={Notes.owner?(note, @current_user)} | ||||
|           patch={~p"/notes/#{note}/edit"} | ||||
|           aria-label={dgettext("actions", "edit %{note_slug}", note_slug: note.slug)} | ||||
|         > | ||||
|   | ||||
| @@ -17,7 +17,7 @@ | ||||
|  | ||||
|   <div class="self-end flex space-x-4"> | ||||
|     <.link | ||||
|       :if={Notes.is_owner?(@note, @current_user)} | ||||
|       :if={Notes.owner?(@note, @current_user)} | ||||
|       class="btn btn-primary" | ||||
|       patch={~p"/note/#{@note}/edit"} | ||||
|     > | ||||
|   | ||||
| @@ -33,7 +33,7 @@ | ||||
|     > | ||||
|       <:actions :let={pipeline}> | ||||
|         <.link | ||||
|           :if={Pipelines.is_owner?(pipeline, @current_user)} | ||||
|           :if={Pipelines.owner?(pipeline, @current_user)} | ||||
|           patch={~p"/pipelines/#{pipeline}/edit"} | ||||
|           aria-label={dgettext("actions", "edit %{pipeline_slug}", pipeline_slug: pipeline.slug)} | ||||
|         > | ||||
|   | ||||
| @@ -17,7 +17,7 @@ | ||||
|  | ||||
|   <div class="pb-4 self-end flex space-x-4"> | ||||
|     <.link | ||||
|       :if={Pipelines.is_owner?(@pipeline, @current_user)} | ||||
|       :if={Pipelines.owner?(@pipeline, @current_user)} | ||||
|       class="btn btn-primary" | ||||
|       patch={~p"/pipeline/#{@pipeline}/edit"} | ||||
|     > | ||||
| @@ -52,7 +52,7 @@ | ||||
|           <%= gettext("%{position}. %{title}", position: position + 1, title: title) %> | ||||
|         </h3> | ||||
|  | ||||
|         <%= if Pipelines.is_owner?(@pipeline, @current_user) do %> | ||||
|         <%= if Pipelines.owner?(@pipeline, @current_user) do %> | ||||
|           <div class="flex justify-between items-center space-x-4"> | ||||
|             <%= if position <= 0 do %> | ||||
|               <i class="fas text-xl fa-chevron-up cursor-not-allowed opacity-25"></i> | ||||
| @@ -113,7 +113,7 @@ | ||||
|   <% end %> | ||||
|  | ||||
|   <.link | ||||
|     :if={Pipelines.is_owner?(@pipeline, @current_user)} | ||||
|     :if={Pipelines.owner?(@pipeline, @current_user)} | ||||
|     class="self-end btn btn-primary" | ||||
|     patch={~p"/pipeline/#{@pipeline}/add_step"} | ||||
|   > | ||||
|   | ||||
		Reference in New Issue
	
	Block a user