mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 23:29:39 +02:00
11 lines
222 B
Ruby
11 lines
222 B
Ruby
|
class Accounts::LogosController < ApplicationController
|
||
|
def show
|
||
|
@account = Current.family.accounts.find(params[:account_id])
|
||
|
render_placeholder
|
||
|
end
|
||
|
|
||
|
def render_placeholder
|
||
|
render formats: :svg
|
||
|
end
|
||
|
end
|