Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## (Unreleased)

## v0.4.0

- Move ownership to my new repository structure

## v0.3.0

- Removed parsing the jwt token, reading the information `company_id`, `company_name`, `uid` from the userinfo endpoint.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Überauth Bexio

[![Continuous Integration](https://github.com/smart-software-engineering/ueberauth_bexio/actions/workflows/elixir.yml/badge.svg)](https://github.com/smart-software-engineering/ueberauth_bexio/actions/workflows/elixir.yml/badge.svg)
[![Continuous Integration](https://github.com/titaniumcoder/ueberauth_bexio/actions/workflows/elixir.yml/badge.svg)](https://github.com/smart-software-engineering/ueberauth_bexio/actions/workflows/elixir.yml/badge.svg)
[![Module Version](https://img.shields.io/hexpm/v/ueberauth_bexio.svg)](https://hex.pm/packages/ueberauth_bexio)
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/ueberauth_bexio/)
[![Total Download](https://img.shields.io/hexpm/dt/ueberauth_bexio.svg)](https://hex.pm/packages/ueberauth_bexio)
[![License](https://img.shields.io/hexpm/l/ueberauth_bexio.svg)](https://github.com/ueberauth/ueberauth_bexio/blob/master/LICENSE)
[![Last Updated](https://img.shields.io/github/last-commit/smart-software-engineering/ueberauth_bexio.svg)](https://github.com/smart-software-engineering/ueberauth_bexio/commits/master)
[![Last Updated](https://img.shields.io/github/last-commit/stitaniumcoder/ueberauth_bexio.svg)](https://github.com/titaniumcoder/ueberauth_bexio/commits/master)


> Bexio OAuth2 strategy for Überauth.
Expand All @@ -19,7 +19,7 @@
```elixir
def deps do
[
{:ueberauth_bexio, "~> 0.3.0"}
{:ueberauth_bexio, "~> 0.4.0"}
]
end
```
Expand Down Expand Up @@ -103,6 +103,6 @@ To guard against client-side request modification, it's important to still check

## Copyright and License

Copyright (c) 2024 Smart Software Engineering SRL
Copyright (c) 2025 Rico Metzger

Released under the MIT License, which can be found in the repository in [LICENSE](https://github.com/smart-software-engineering/ueberauth_bexio/blob/master/LICENSE).
Released under the MIT License, which can be found in the repository in [LICENSE](https://github.com/titaniumcoder/ueberauth_bexio/blob/master/LICENSE).
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
defmodule UeberauthBexio.MixProject do
use Mix.Project

@source_url "https://github.com/smart-software-engineering/ueberauth_bexio"
@version "0.3.0"
@source_url "https://github.com/titaniumcoder/ueberauth_bexio"
@version "0.4.0"

def project do
[
Expand Down
Loading