ErsatzRyan
ErsatzRyan

Reputation: 3043

Adding thoughtbot's open_id_authentication to thoughtbot's clearance

I am working on an application that is currently using thoughtbot's clearance as its authentication piece. I want to add openID to this application and know that thoughtbot has an open_id_authentication plugin. Does anyone know how easy it is to go about doing this or if there is a tutorial or anything somewhere?

Upvotes: 2

Views: 244

Answers (1)

mislav
mislav

Reputation: 15209

The "open_id_authentication" plugin is not originally Thoughtbot's, it's probably just their fork of the main one. That plugin provides some useful controller methods, but doesn't integrate with Clearance out-of-the-box. You'll have to study how both work and write additional code in your app that inherits from Clearance controllers and mixes in OpenID authentication logic.

Upvotes: 1

Related Questions