Steffen Deusch

Results 224 comments of Steffen Deusch

Hi @srcrip, those are all very valid points you're raising here. Unfortunately the tl;dr is: neither Chris nor I actively do Typescript, therefore anything related to types isn't something we're...

I assume we could add a `acceptsBlobs` property to the channel and then we can check in LiveView if it exists. LiveView would then need to keep both code paths...

I think I also had code for LiveViewTest somewhere, but I can't find it right now. It's definitely possible. For making it more visible, I've been thinking more than once...

Right, currently all the formatter rules are defined in Phoenix only: https://github.com/phoenixframework/phoenix/blob/9490f091a90a9050bca04f86a9ad2b7d486b1f87/.formatter.exs#L66-L96 I guess we could duplicate the rules?

@josevalim do you have opinions on this?

Related: https://github.com/phoenixframework/phoenix_live_view/issues/2502 https://github.com/phoenixframework/phoenix_live_view/issues/1478#issuecomment-853758197

> But now I'm wondering: is there a way to disable the appending of _unused_ fields? I have some plain forms not bound to any entity, which I use for...

opinions? @chrismccord @josevalim

@leepage87 how do you set this cookie? You should probably filter the parameters there.

Well, there is "some way", but it's indeed not very nice: ```elixir Application.put_env(:phoenix, Example.Endpoint, http: [ip: {127, 0, 0, 1}, port: 5001], server: true, live_view: [signing_salt: "aaaaaaaa"], secret_key_base: String.duplicate("a", 64)...