An Elixir toolkit for the AT Protocol. hexdocs.pm/atex
elixir bluesky atproto decentralization
24
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(nsid): PascalCase parts of NSID so that module names look proper

ovyerus.com 820905b4 16cd6fae

verified
+1 -1
+1 -1
lib/atex/nsid.ex
··· 14 14 def to_atom(nsid, fully_qualify \\ true) do 15 15 nsid 16 16 |> String.split(".") 17 - |> Enum.map(&String.capitalize/1) 17 + |> Enum.map(&Recase.to_pascal/1) 18 18 |> then(fn parts -> 19 19 if fully_qualify do 20 20 ["Elixir" | parts]