diff --git a/app/views/authorizations/index.mobile.haml b/app/views/authorizations/index.mobile.haml new file mode 100644 index 0000000000000000000000000000000000000000..2dfb9ce1eacb2534d497d6d99352aed4a6c5ae7a --- /dev/null +++ b/app/views/authorizations/index.mobile.haml @@ -0,0 +1,24 @@ +-# Copyright (c) 2010, Diaspora Inc. This file is +-# licensed under the Affero General Public License version 3 or later. See +-# the COPYRIGHT file. + +%h3 + = t('_applications') +#applications_stream.stream + - if @applications.count > 0 + - for app in @applications + .stream_element{:id => app.id} + .right + = link_to t('.revoke_access'), authorization_path(:id => app.id), :method => :delete, :confirm => 'are you sure?', :class => "button" + + - if app.icon_url + = image_tag(app.application_base_url + app.icon_url, :class => "avatar") + + .content + %div.from + = link_to app.name, app.application_base_url + = app.description + + - else + You haven't registered any applications yet. +%br diff --git a/spec/controllers/authorizations_controller_spec.rb b/spec/controllers/authorizations_controller_spec.rb index c193cde558ea98f0f7a1b8a70d3fcaada5bb36d6..1458343aa55d02c8bf9e38cab8aaec7e6603ac21 100644 --- a/spec/controllers/authorizations_controller_spec.rb +++ b/spec/controllers/authorizations_controller_spec.rb @@ -81,7 +81,7 @@ describe AuthorizationsController do post :token, @params_hash response.code.should == "200" end - + it 'renders something for localhost' do prepare_manifest("http://localhost:3423/") @controller.stub!(:verify).and_return('ok') @@ -133,6 +133,10 @@ describe AuthorizationsController do get :index response.should be_success end + it 'succeeds on a phone' do + get :index, :format => :mobile + response.should be_success + end it 'assigns the auth. & apps for the current user' do app1 = Factory.create(:app, :name => "Authorized App")